diff --git a/.github/workflows/api-container.yml b/.github/workflows/api-container.yml index e4df4b0..37244b7 100644 --- a/.github/workflows/api-container.yml +++ b/.github/workflows/api-container.yml @@ -49,7 +49,7 @@ jobs: run: | version=$(jq -r '.version' api/package.json) echo "current_version=$version" >> "$GITHUB_OUTPUT" - nonprod-deploy-api: + nonprod-deploy: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type != 'release' strategy: @@ -71,7 +71,7 @@ jobs: permissions: contents: read packages: write - prod-deploy-api: + prod-deploy: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type == 'release' strategy: diff --git a/.github/workflows/web-container.yml b/.github/workflows/web-container.yml index fe29787..61aeca7 100644 --- a/.github/workflows/web-container.yml +++ b/.github/workflows/web-container.yml @@ -49,7 +49,7 @@ jobs: run: | version=$(jq -r '.version' web/package.json) echo "current_version=$version" >> "$GITHUB_OUTPUT" - nonprod-deploy-web: + nonprod-deploy: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type != 'release' strategy: @@ -71,7 +71,7 @@ jobs: permissions: contents: read packages: write - prod-deploy-web: + prod-deploy: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type == 'release' strategy: