From 3c01532748c8baa010a4bfe5b5e6a4eb50f271f9 Mon Sep 17 00:00:00 2001 From: Lena <126529524+acuteenvy@users.noreply.github.com> Date: Thu, 11 Jan 2024 21:35:05 +0100 Subject: [PATCH] ci: allow contents/write --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 10a3c05b7..ee6215366 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: ['push', 'pull_request'] permissions: - contents: read # to fetch code (actions/checkout) + contents: write # to upload assets to releases jobs: ci: @@ -52,3 +52,4 @@ jobs: run: bash scripts/deploy.sh env: DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }} + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}