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.