From 3ace0ee3dfbd1195c9115310f8537ba97f153d4c Mon Sep 17 00:00:00 2001 From: nerdCopter <56646290+nerdCopter@users.noreply.github.com> Date: Mon, 26 Feb 2024 14:58:05 -0600 Subject: [PATCH] Github Actions - Link Artifacts in PR comments; annoyingly running out of ideas --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 997a6c483b..eab978a984 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -12,6 +12,8 @@ on: types: [build] name: Build EmuFlight +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: build: continue-on-error: false @@ -137,12 +139,13 @@ jobs: artifacts: if: github.event_name == 'pull_request' needs: build + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} permissions: id-token: write contents: read issues: write pull-requests: write - #permissions: write-all runs-on: ubuntu-latest continue-on-error: false steps: