We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 52b6fda commit 73c864fCopy full SHA for 73c864f
.github/workflows/refresh_static.yml
@@ -61,3 +61,21 @@ jobs:
61
git add .
62
git commit -m 'Updating static site'
63
git push origin main
64
+
65
+ - name: Setup Pages
66
+ id: setup-pages
67
+ if: steps.push-to-main.outcome == 'success'
68
+ uses: actions/configure-pages@v5
69
70
+ - name: Upload artifact
71
+ if: steps.setup-pages.outcome == 'success'
72
+ id: upload
73
+ uses: actions/upload-pages-artifact@v3
74
+ with:
75
+ # Upload contents of static folder
76
+ path: "./static/"
77
78
+ - name: Deploy to GitHub Pages
79
+ if: steps.upload.outcome == 'success'
80
+ id: deploy
81
+ uses: actions/deploy-pages@v4
0 commit comments