From 69773c54559dc9a902ec3143ce1937af24fc73f8 Mon Sep 17 00:00:00 2001 From: Tomasz Janiszewski Date: Tue, 1 Jul 2025 20:24:28 +0200 Subject: [PATCH] fix release draft Current builds fails with `Error: Resource not accessible by integration` this should fix the problem by granting permissions --- .github/workflows/main.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d0f030d3..4c9b138e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,6 +11,9 @@ on: jobs: build: runs-on: ubuntu-latest + permissions: + # Write permission is required to create a github release + contents: write steps: - uses: actions/checkout@v4