Skip to content

Commit b86c6a2

Browse files
Add permissions to Android release workflow to fix startup failure (#18566)
The reusable workflow android-release-artifacts.yml requires id-token: write for AWS OIDC authentication, but the calling workflow didn't declare any permissions, preventing GitHub from granting them to the nested workflows.
1 parent 6b2537d commit b86c6a2

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.github/workflows/android-release-on-tag.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- 'v*.*.*-rc*'
77
- 'v*.*.*'
88

9+
permissions:
10+
id-token: write
11+
contents: read
12+
913
jobs:
1014
prepare:
1115
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)