From dbf3f020bb580021b4d198de694ca1d5679ba73b Mon Sep 17 00:00:00 2001 From: Toby Jaffey Date: Tue, 3 Dec 2024 22:56:55 +0000 Subject: [PATCH] Auto deploy to pages --- .github/workflows/build.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c51c822..00752ac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,6 +2,12 @@ name: CI on: [push, pull_request] +# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages +permissions: + contents: read + pages: write + id-token: write + jobs: test: strategy: @@ -20,5 +26,16 @@ jobs: - name: Build run: zig build working-directory: zig-wasm-audio-framebuffer + - name: Setup Pages + if: github.ref == 'refs/heads/main' + uses: actions/configure-pages@v3 + - name: Upload Artifact + if: github.ref == 'refs/heads/main' + uses: actions/upload-pages-artifact@v1 + with: + path: "zig-wasm-audio-framebuffer/zig-out" + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v2