File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Deploy to GitHub Pages
2+
3+ on :
4+ push :
5+ branches : [master]
6+ workflow_dispatch :
7+
8+ # Allow only one concurrent deployment, skipping runs queued between the
9+ # run in-progress and latest queued. Do not cancel in-progress runs.
10+ concurrency :
11+ group : pages
12+ cancel-in-progress : false
13+
14+ permissions :
15+ contents : read
16+ pages : write
17+ id-token : write
18+
19+ jobs :
20+ build :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+
26+ - name : Set up Node
27+ uses : actions/setup-node@v4
28+ with :
29+ node-version : 20
30+ cache : npm
31+
32+ - name : Install dependencies
33+ run : npm ci
34+
35+ - name : Build
36+ run : npm run build
37+
38+ - name : Upload Pages artifact
39+ uses : actions/upload-pages-artifact@v3
40+ with :
41+ path : dist
42+
43+ deploy :
44+ needs : build
45+ runs-on : ubuntu-latest
46+ environment :
47+ name : github-pages
48+ url : ${{ steps.deployment.outputs.page_url }}
49+ steps :
50+ - name : Deploy to GitHub Pages
51+ id : deployment
52+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ waterdog.dev
You can’t perform that action at this time.
0 commit comments