File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,11 @@ permissions:
1717 pages : write
1818 id-token : write
1919
20- # Allow one concurrent deployment
20+ # Allow one concurrent deployment, skipping runs queued between the run in-progress and latest queued
21+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2122concurrency :
2223 group : " pages"
23- cancel-in-progress : true
24+ cancel-in-progress : false
2425
2526jobs :
2627 build :
3738
3839 - name : Setup Pages
3940 id : pages
40- uses : actions/configure-pages@v4
41+ uses : actions/configure-pages@v5
4142
4243 - name : Setup Ruby
4344 uses : ruby/setup-ruby@v1
5758 - name : Upload site artifact
5859 uses : actions/upload-artifact@v4
5960 with :
61+ name : github-pages
6062 path : " _site${{ steps.pages.outputs.base_path }}"
6163
6264 deploy :
6668 runs-on : ubuntu-latest
6769 needs : build
6870 steps :
71+ - name : Checkout
72+ uses : actions/checkout@v4
73+ - name : Download site artifact
74+ uses : actions/download-artifact@v4
75+ with :
76+ name : github-pages
6977 - name : Deploy to GitHub Pages
7078 id : deployment
7179 uses : actions/deploy-pages@v4
80+ with :
81+ artifact_name : github-pages
You can’t perform that action at this time.
0 commit comments