Skip to content

Commit 6539bb2

Browse files
committed
🔒 Fix GitHub Actions permissions for release creation
- Added required permissions to workflow: - contents: write (for creating releases) - actions: read (for reading artifacts) - checks: write (for workflow checks) - Resolves 403 'Resource not accessible by integration' error - Workflow will now properly create GitHub releases on tag push
1 parent 8207a2f commit 6539bb2

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build-windows-executable.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ on:
1313
required: false
1414
default: 'latest'
1515

16+
permissions:
17+
contents: write # Required to create releases
18+
actions: read # Required to read workflow artifacts
19+
checks: write # Required to create checks
20+
1621
jobs:
1722
build-windows-executable:
1823
name: Build Windows Executable

0 commit comments

Comments
 (0)