fix(ci): add write permissions to beta-release update-version job

The update-version job needs contents: write permission to push the
version bump commit and tag to the repository. Without this, the
workflow fails with a 403 error when trying to git push.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
AndyMik90
2025-12-25 21:34:38 +01:00
parent 50dd10788a
commit 0b874d4b33
+2
View File
@@ -36,6 +36,8 @@ jobs:
name: Update package.json version
needs: validate-version
runs-on: ubuntu-latest
permissions:
contents: write
outputs:
version: ${{ steps.version.outputs.version }}
steps: