From 90e1bfac8a6d1b3dd49d85278e5de914539b5bb5 Mon Sep 17 00:00:00 2001 From: Tim Bernhard Date: Fri, 29 Dec 2023 09:21:07 +0100 Subject: [PATCH] Switch back to branch-specifc gh pages deployment --- .github/workflows/publish-gh-pages.yaml | 25 ++++--------------------- 1 file changed, 4 insertions(+), 21 deletions(-) diff --git a/.github/workflows/publish-gh-pages.yaml b/.github/workflows/publish-gh-pages.yaml index 8743278..7c2dc8a 100644 --- a/.github/workflows/publish-gh-pages.yaml +++ b/.github/workflows/publish-gh-pages.yaml @@ -28,25 +28,8 @@ jobs: BASE_PATH: '/${{ github.event.repository.name }}' run: npm run build - - name: Upload Artifacts - uses: actions/upload-pages-artifact@v2 + - name: Upload Build + uses: JamesIves/github-pages-deploy-action@v4.5.0 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@v2 + branch: gh-pages # The branch the action should deploy to. + folder: ./build/ # The folder the action should deploy.