We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1985317 commit 3389763Copy full SHA for 3389763
1 file changed
.github/workflows/eleventy_build.yml
@@ -26,8 +26,17 @@ jobs:
26
npm install
27
npm run build
28
29
- - name: Deploy
30
- uses: peaceiris/actions-gh-pages@v3
+ # Configure GitHub Pages
+ - name: Configure Pages
31
+ uses: actions/configure-pages@v5
32
+
33
+ # Upload artifact for Pages
34
+ - name: Upload artifact
35
+ uses: actions/upload-pages-artifact@v3
36
with:
- publish_dir: ./_site
- github_token: ${{ secrets.GITHUB_TOKEN }}
37
+ path: ./_site
38
39
+ # Deploy to GitHub Pages
40
+ - name: Deploy to GitHub Pages
41
+ id: deployment
42
+ uses: actions/deploy-pages@v4
0 commit comments