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 8f4d8f5 commit e7a7962Copy full SHA for e7a7962
.github/WORKFLOW_UPDATES.md
@@ -28,6 +28,11 @@ All GitHub Actions workflows have been updated to use **Java 21** instead of Jav
28
- SNAPSHOT versions are not available in public Maven repositories
29
- The stable release version will prevent build failures in GitHub Actions
30
31
+**GitHub Actions Permissions Fixed**
32
+- Added `permissions: contents: write` to the workflow
33
+- This allows the auto-release job to create and update tags/releases
34
+- Fixes the "Resource not accessible by integration" error
35
+
36
## Testing
37
38
The workflows will now:
.github/workflows/build-and-release.yml
@@ -12,6 +12,9 @@ on:
12
- main
13
- master
14
15
+permissions:
16
+ contents: write
17
18
jobs:
19
build:
20
runs-on: ubuntu-latest
0 commit comments