From 8050b0a8588da4782f2acde61fe556f11d37005b Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Sat, 14 Jun 2025 12:40:46 -0400 Subject: [PATCH] Change Package Names --- .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 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: