diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 55e89416..86b47ed2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -27,22 +27,16 @@ jobs: - name: Build run: npm run build - deploy: - needs: build - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 + - name: Setup Pages uses: actions/configure-pages@v2 + - name: Upload artifact uses: actions/upload-pages-artifact@v1 with: # Upload entire repository path: "./out" + - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v1