From 4b50535b2ab20a3c8db51639726bc1d8f89ff038 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Sat, 14 Jun 2025 12:35:25 -0400 Subject: [PATCH] add api/web --- .github/workflows/api-container.yml | 4 ++-- .github/workflows/web-container.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/api-container.yml b/.github/workflows/api-container.yml index 37244b7..e4df4b0 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: + nonprod-deploy-api: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type != 'release' strategy: @@ -71,7 +71,7 @@ jobs: permissions: contents: read packages: write - prod-deploy: + prod-deploy-api: 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 61aeca7..fe29787 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: + nonprod-deploy-web: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type != 'release' strategy: @@ -71,7 +71,7 @@ jobs: permissions: contents: read packages: write - prod-deploy: + prod-deploy-web: needs: determine-workflow if: needs.determine-workflow.outputs.workflow_type == 'release' strategy: