From c6a102703b67b53703c6a2531c8279c5112856cf Mon Sep 17 00:00:00 2001 From: chrisbloe Date: Tue, 17 Mar 2026 13:36:26 +0000 Subject: [PATCH] [PRM-691] The Create Release tool should run against dev --- .github/workflows/tool-create-release.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tool-create-release.yml b/.github/workflows/tool-create-release.yml index 83daec62..9ea3fe29 100644 --- a/.github/workflows/tool-create-release.yml +++ b/.github/workflows/tool-create-release.yml @@ -18,6 +18,7 @@ jobs: create_release: name: Create Release runs-on: ubuntu-latest + environment: dev env: tag: ${{ inputs.tag }} steps: @@ -27,7 +28,7 @@ jobs: echo "Error: Tag must be in the format X.Y.Z (e.g. 1.0.0)" exit 1 fi - + - name: Configure AWS Credentials id: credentials uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0 @@ -40,7 +41,7 @@ jobs: - name: Checkout uses: actions/checkout@v6 - - name: Create Github tag + - name: Create GitHub tag run: | git config --global user.name "github-actions" git config --global user.email "github@github.com" @@ -73,5 +74,3 @@ jobs: docker tag $repo:$IMAGE_SHA $repo:$tag docker push $repo:$tag done - -