From 47876541d565697fac864e0624e4f2d141bb5f73 Mon Sep 17 00:00:00 2001 From: musa-asad Date: Wed, 4 Dec 2024 21:01:58 -0500 Subject: [PATCH] Add test production environment job. --- .github/workflows/build-and-upload-release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build-and-upload-release.yml b/.github/workflows/build-and-upload-release.yml index 253fd9ff..1aafee7c 100644 --- a/.github/workflows/build-and-upload-release.yml +++ b/.github/workflows/build-and-upload-release.yml @@ -163,6 +163,13 @@ jobs: with: tag: ${{ inputs.tag }} + test-production-env: + runs-on: ubuntu-latest + environment: 'production' + steps: + - name: Test Production Environment + run: echo "Successfully accessed production environment." + push-release-ecr: if: ${{ inputs.release }} needs: [MakeTABinary, e2e-test]