New deployment for "125/merge" triggered by lukasz-wal #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy New Version | ||
run-name: New deployment for "${{ github.ref_name }}" triggered by ${{ github.actor }} | ||
on: | ||
pull_request: | ||
types: [opened, synchronize] | ||
push: | ||
branches: | ||
- workflows | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Enter the version number' | ||
required: true | ||
default: 'latest' | ||
jobs: | ||
ReuseableMatrixJobForDeployment: | ||
strategy: | ||
matrix: | ||
build-type: [production, staging] | ||
include: | ||
- build-type: production | ||
tag_suffix: prod | ||
environment: production-fidl | ||
- build-type: staging | ||
tag_suffix: stg | ||
environment: staging-fidl | ||
uses: ./.github/workflows/release-new-version.yml | ||
Check failure on line 32 in .github/workflows/deploy-new-version.yml
|
||
with: | ||
stage: ${{ matrix.build-type }} | ||
tag_suffix: ${{ matrix.tag_suffix }} | ||
environment: ${{ matrix.environment }} | ||
secrets: inherit | ||
# reuseable-matrix-job: | ||
# strategy: | ||
# matrix: | ||
# build-type: [production, staging] | ||
# include: | ||
# - build-type: production | ||
# tag_suffix: prod | ||
# environment: production-fidl | ||
# - build-type: staging | ||
# tag_suffix: stg | ||
# environment: staging-fidl | ||
# uses: ./.github/workflows/release-new-version.yml | ||
# with: | ||
# stage: ${{ matrix.build-type }} | ||
# tag_suffix: ${{ matrix.tag_suffix }} | ||
# environment: ${{ matrix.environment }} | ||
# secrets: inherit |