We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c948138 commit 32b3008Copy full SHA for 32b3008
.github/workflows/ci.yml
@@ -56,9 +56,22 @@ jobs:
56
echo "Zola version: $(./zola --version)"
57
- name: Zola build
58
run: ./zola build
59
- - name: Deploy
60
- if: github.ref == 'refs/heads/source'
61
- uses: crazy-max/ghaction-github-pages@v1
+ - name: Upload GitHub Pages artifact
+ uses: actions/upload-pages-artifact@v1
62
with:
63
- build_dir: public
64
- target_branch: master
+ path: public
+
+ pages:
65
+ needs: zola
66
+ permissions:
67
+ pages: write
68
+ id-token: write
69
+ environment:
70
+ name: github-pages
71
+ url: ${{ steps.deployment.outputs.page_url }}
72
+ runs-on: ubuntu-latest
73
+ if: format('refs/heads/{0}', github.event.repository.default_branch) == github.ref
74
+ steps:
75
+ - name: Deploy to GitHub Pages
76
+ id: deployment
77
+ uses: actions/deploy-pages@v4
0 commit comments