File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,28 +14,32 @@ permissions:
1414
1515concurrency :
1616 group : " pages"
17- cancel-in-progress : true
17+ cancel-in-progress : false
1818
1919jobs :
2020 build :
2121 runs-on : ubuntu-latest
2222 steps :
23- - uses : actions/checkout@v3
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+
26+ - name : Setup Pages
27+ uses : actions/configure-pages@v5
2428
2529 - name : Install tools
2630 run : source .devcontainer/setup.sh
2731
2832 - name : Build main website
2933 run : make -f docs/Makefile html
3034
31- - name : Upload website to artifacts
35+ - name : Upload artifacts
3236 uses : actions/upload-pages-artifact@v3
3337 with :
3438 path : ' ./out/docs/html'
3539
3640 deploy :
37- needs : build
3841 runs-on : ubuntu-latest
42+ needs : build
3943 environment :
4044 name : github-pages
4145 url : ${{ steps.deployment.outputs.page_url }}
You can’t perform that action at this time.
0 commit comments