Skip to content

Commit cfad34f

Browse files
authored
[PRM-691] The Create Release tool should run against dev (#296)
1 parent 31e51cd commit cfad34f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/tool-create-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
create_release:
1919
name: Create Release
2020
runs-on: ubuntu-latest
21+
environment: dev
2122
env:
2223
tag: ${{ inputs.tag }}
2324
steps:
@@ -27,7 +28,7 @@ jobs:
2728
echo "Error: Tag must be in the format X.Y.Z (e.g. 1.0.0)"
2829
exit 1
2930
fi
30-
31+
3132
- name: Configure AWS Credentials
3233
id: credentials
3334
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
@@ -40,7 +41,7 @@ jobs:
4041
- name: Checkout
4142
uses: actions/checkout@v6
4243

43-
- name: Create Github tag
44+
- name: Create GitHub tag
4445
run: |
4546
git config --global user.name "github-actions"
4647
git config --global user.email "github@github.com"
@@ -73,5 +74,3 @@ jobs:
7374
docker tag $repo:$IMAGE_SHA $repo:$tag
7475
docker push $repo:$tag
7576
done
76-
77-

0 commit comments

Comments
 (0)