From 178d0bd688adc1f425a82d78a169fb96c0b373cb Mon Sep 17 00:00:00 2001 From: Richard Bowman Date: Thu, 21 Mar 2024 12:14:49 +0000 Subject: [PATCH] Add write permission to allow binaries to upload Uploading binaries to the release requires write permission: this should ensure said permission exists. --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 3b76b5d..02b627d 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -12,7 +12,7 @@ jobs: url: https://pypi.org/p/picamerax permissions: id-token: write # IMPORTANT: this permission is mandatory for trusted publishing - + contents: write steps: - name: Checkout code uses: actions/checkout@v2