From c01230eeba79b1abe99b5e973ca53c3461aef36a Mon Sep 17 00:00:00 2001 From: Andrew Arnold Date: Thu, 7 Nov 2024 12:37:00 -0500 Subject: [PATCH] Update Github Actions to Use QA and Production Branches Change from using tgr-qa and tgr-production branches for Github Actions. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5823acc..f1bca37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: run: npm run test publish_qa: needs: test - if: github.ref == 'refs/heads/tgr-qa' + if: github.ref == 'refs/heads/qa' name: Publish image to ECR and update ECS stack runs-on: ubuntu-latest permissions: @@ -56,7 +56,7 @@ jobs: aws ecs update-service --cluster nypl-library-card-app-qa --service nypl-library-card-app-qa --force-new-deployment publish_production: needs: test - if: github.ref == 'refs/heads/tgr-production' + if: github.ref == 'refs/heads/production' name: Publish image to ECR and update ECS stack runs-on: ubuntu-latest permissions: