Skip to content

Commit cc78c19

Browse files
committed
Explicitly use write perms for publish step
Previously these were set for the token by default. They're now disabled by default, and enabled only for publish pushes (tags).
1 parent 9836856 commit cc78c19

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ jobs:
3939
needs: build
4040
runs-on: ubuntu-22.04
4141
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
42+
permissions:
43+
contents: write
4244
steps:
4345
- name: Get the APK
4446
uses: actions/download-artifact@v4

0 commit comments

Comments
 (0)