From 51721cf44a4911128e165ce1b3704e12b03c2eeb Mon Sep 17 00:00:00 2001 From: zie619 Date: Mon, 3 Nov 2025 22:16:02 +0200 Subject: [PATCH] fix: add packages write permission for Docker image push to GHCR MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The build job was failing with: 'denied: installation not allowed to Create organization package' Added required permissions to build job: - packages: write (for pushing to GitHub Container Registry) - contents: read - id-token: write This allows the workflow to push Docker images to ghcr.io/zie619/n8n-workflows 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .github/workflows/ci-cd.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index e7b592a4..10c47f75 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -120,6 +120,10 @@ jobs: runs-on: ubuntu-latest needs: [test, security] if: github.event_name != 'pull_request' + permissions: + contents: read + packages: write + id-token: write steps: - name: Checkout code