From 3732696ef937a73f1613a067e487c73dc320aa11 Mon Sep 17 00:00:00 2001 From: Florent Morselli Date: Sat, 21 Sep 2024 10:17:17 +0200 Subject: [PATCH] Set write permissions for release workflow Added `contents: write` permissions to ensure the GitHub Actions workflow has the necessary access rights to create or modify repository contents during the release process. This change is required for the workflow to execute successfully. --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0be7b2d..503ef35 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,9 @@ on: env: BOX_VERSION: '4.6.2' +permissions: + contents: write + jobs: build: runs-on: 'ubuntu-latest'