From 52c078d479410ab88a720128ad3a490018a49377 Mon Sep 17 00:00:00 2001 From: chema Date: Sun, 29 Jun 2025 23:03:13 +0200 Subject: [PATCH] ci: add permissions for creating releases in publish workflow --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b24afe2..ec5ebc6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,6 +20,8 @@ jobs: needs: check-tests runs-on: ubuntu-latest if: github.ref == 'refs/heads/main' && github.event_name == 'push' + permissions: + contents: write # Required for creating releases steps: - uses: actions/checkout@v4