From 3da00102ac57cea9442309e024c2ca6c97f8f09c Mon Sep 17 00:00:00 2001 From: florianvazelle Date: Sun, 25 Feb 2024 12:04:31 +0100 Subject: [PATCH] ci: add github token to allow appimage publish step to upload artifact --- .github/workflows/appimage-build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/appimage-build.yml b/.github/workflows/appimage-build.yml index fedf93d..0021f2e 100644 --- a/.github/workflows/appimage-build.yml +++ b/.github/workflows/appimage-build.yml @@ -52,3 +52,5 @@ jobs: if: startsWith(github.ref, 'refs/tags/') run: | gh release upload ${{ env.game_version }} ./${{ env.game_name }}-${{ env.game_version }}.AppImage + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}