From 38c1caf18054d2fb3b004ade3dbddfed839ddf69 Mon Sep 17 00:00:00 2001 From: link2xt Date: Wed, 15 May 2024 19:43:25 +0000 Subject: [PATCH] ci: give CI job permission to publish binaries to the release Otherwise it fails on `gh release upload` step. --- .github/workflows/deltachat-rpc-server.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deltachat-rpc-server.yml b/.github/workflows/deltachat-rpc-server.yml index 028446c9a..2779c40e0 100644 --- a/.github/workflows/deltachat-rpc-server.yml +++ b/.github/workflows/deltachat-rpc-server.yml @@ -273,7 +273,9 @@ jobs: runs-on: "ubuntu-latest" permissions: id-token: write - contents: read + + # Needed to publish the binaries to the release. + contents: write steps: - uses: actions/checkout@v4 with: