We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 628f323 commit d4c6696Copy full SHA for d4c6696
.github/workflows/prod-release.yml
@@ -1,4 +1,6 @@
1
name: Release
2
+permissions:
3
+ contents: read
4
5
on:
6
# TODO: remove pull_request once tested in PR
@@ -215,8 +217,7 @@ jobs:
215
217
run: |
216
218
git config --global user.name "aws-crypto-tools-ci-bot"
219
git config --global user.email "no-reply@noemail.local"
- # TODO: Uncomment when adding publish step
- # git checkout $BRANCH # Commented out to test on current branch
220
+ git checkout ${{ github.head_ref }} # Use PR branch or current branch
221
222
- name: Version packages (dry run - no push)
223
0 commit comments