From 5ac1ea017b3eb47a1e6fd7efab21f5687914fb66 Mon Sep 17 00:00:00 2001 From: Ender <33337309+e3ndr@users.noreply.github.com> Date: Fri, 5 Jul 2024 06:28:28 -0500 Subject: [PATCH] I think I needed this :P --- .github/workflows/deploy-demo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/deploy-demo.yml b/.github/workflows/deploy-demo.yml index a3a660e..896a95a 100644 --- a/.github/workflows/deploy-demo.yml +++ b/.github/workflows/deploy-demo.yml @@ -31,3 +31,20 @@ jobs: with: # this should match the `pages` option in your adapter-static options path: 'build/' + + deploy: + needs: build_site + runs-on: ubuntu-latest + + permissions: + pages: write + id-token: write + + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + steps: + - name: Deploy + id: deployment + uses: actions/deploy-pages@v4