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