We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31e51cd commit cfad34fCopy full SHA for cfad34f
.github/workflows/tool-create-release.yml
@@ -18,6 +18,7 @@ jobs:
18
create_release:
19
name: Create Release
20
runs-on: ubuntu-latest
21
+ environment: dev
22
env:
23
tag: ${{ inputs.tag }}
24
steps:
@@ -27,7 +28,7 @@ jobs:
27
28
echo "Error: Tag must be in the format X.Y.Z (e.g. 1.0.0)"
29
exit 1
30
fi
-
31
+
32
- name: Configure AWS Credentials
33
id: credentials
34
uses: aws-actions/configure-aws-credentials@8df5847569e6427dd6c4fb1cf565c83acfa8afa7 # v6.0.0
@@ -40,7 +41,7 @@ jobs:
40
41
- name: Checkout
42
uses: actions/checkout@v6
43
- - name: Create Github tag
44
+ - name: Create GitHub tag
45
run: |
46
git config --global user.name "github-actions"
47
git config --global user.email "github@github.com"
@@ -73,5 +74,3 @@ jobs:
73
74
docker tag $repo:$IMAGE_SHA $repo:$tag
75
docker push $repo:$tag
76
done
77
0 commit comments