File tree Expand file tree Collapse file tree 4 files changed +43
-0
lines changed
Expand file tree Collapse file tree 4 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1+ on :
2+ push :
3+ branches : ["main"]
4+
5+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
6+ permissions :
7+ contents : read
8+ pages : write
9+ id-token : write
10+
11+ # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
12+ # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
13+ concurrency :
14+ group : " pages"
15+ cancel-in-progress : false
16+
17+ jobs :
18+ build :
19+ name : Build
20+ runs-on : ubuntu-latest
21+ steps :
22+ - name : Checkout
23+ uses : actions/checkout@v4
24+ - run : mkdir dist && mv *.html dist
25+ - name : Upload artifact
26+ uses : actions/upload-pages-artifact@v3
27+ with :
28+ path : dist
29+
30+ deploy :
31+ environment :
32+ name : github-pages
33+ url : ${{ steps.deployment.outputs.page_url }}
34+ needs : build
35+ runs-on : ubuntu-latest
36+ name : Deploy
37+ steps :
38+ - name : Deploy to GitHub Pages
39+ id : deployment
40+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ < meta http-equiv ='refresh ' content ='0;url=https://github.com/libmath/math/issues/1 ' />
Original file line number Diff line number Diff line change 1+ < meta http-equiv ='refresh ' content ='0;url=https://github.com/libmath/math/issues/2 ' />
Original file line number Diff line number Diff line change 1+ < meta http-equiv ='refresh ' content ='0;url=https://github.com/libmath/z/wiki ' />
You can’t perform that action at this time.
0 commit comments