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 GitHub Pages
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ workflow_dispatch :
8+
9+ permissions :
10+ contents : read
11+ pages : write
12+ id-token : write
13+
14+ concurrency :
15+ group : github-pages
16+ cancel-in-progress : true
17+
18+ jobs :
19+ build :
20+ runs-on : ubuntu-latest
21+ steps :
22+ - name : Checkout
23+ uses : actions/checkout@v4
24+
25+ - name : Setup Node.js
26+ uses : actions/setup-node@v4
27+ with :
28+ node-version : 22
29+ cache : npm
30+
31+ - name : Configure Pages
32+ uses : actions/configure-pages@v5
33+
34+ - name : Install dependencies
35+ run : npm ci
36+
37+ - name : Build app
38+ run : npm run build -- --base-href ./
39+
40+ - name : Upload Pages artifact
41+ uses : actions/upload-pages-artifact@v3
42+ with :
43+ path : dist/samples-public/browser
44+
45+ deploy :
46+ needs : build
47+ runs-on : ubuntu-latest
48+ environment :
49+ name : github-pages
50+ url : ${{ steps.deployment.outputs.page_url }}
51+ permissions :
52+ pages : write
53+ id-token : write
54+ steps :
55+ - name : Deploy to GitHub Pages
56+ id : deployment
57+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments