From e04e3204eb6930fc1c873909862fa7d83cc76c0d Mon Sep 17 00:00:00 2001 From: suchmememanyskill <38142618+suchmememanyskill@users.noreply.github.com> Date: Mon, 13 Nov 2023 16:37:54 +0100 Subject: [PATCH] Try 5 --- .github/workflows/compile.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/compile.yaml b/.github/workflows/compile.yaml index 53c812a..9cd14fb 100644 --- a/.github/workflows/compile.yaml +++ b/.github/workflows/compile.yaml @@ -1,5 +1,9 @@ name: PlatformIO CI +permissions: + pages: write + id-token: write + on: [push, pull_request] jobs: @@ -56,6 +60,11 @@ jobs: runs-on: ubuntu-latest needs: build steps: + - name: Print GitHub event name + run: | + echo "${{ github.event_name }}" + - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v2 \ No newline at end of file + uses: actions/deploy-pages@v2 + \ No newline at end of file