We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b9b9286 commit f9920a8Copy full SHA for f9920a8
.github/workflows/build.yml
@@ -11,6 +11,10 @@ on:
11
schedule:
12
- cron: '0 20 * * *'
13
14
+permissions:
15
+ contents: write
16
+ packages: write
17
+
18
env:
19
app_name: 'aws-cli'
20
app_repo: 'aws/aws-cli'
@@ -137,7 +141,7 @@ jobs:
137
141
138
142
- name: Create release
139
143
140
- GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
144
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
145
run: |
146
TAG_NAME="${{ env.app_version }}"
147
gh release create "${TAG_NAME}" \
0 commit comments