diff --git a/.github/workflows/deploy-per-pr.yaml b/.github/workflows/deploy-per-pr.yaml new file mode 100644 index 0000000000..5fc500146d --- /dev/null +++ b/.github/workflows/deploy-per-pr.yaml @@ -0,0 +1,27 @@ +name: Deploy PR Preview + +on: + pull_request: {} + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Setup Pages + uses: actions/configure-pages@v5 + - name: Build + uses: actions/jekyll-build-pages@v1 + - name: Upload artifact + uses: actions/upload-pages-artifact@v3 + deploy: + runs-on: ubuntu-latest + needs: build + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} \ No newline at end of file