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 : Pages Deployment
2+
3+ on :
4+ push :
5+ branches : [gh-pages]
6+
7+ jobs :
8+ # Build job
9+ build :
10+ # Specify runner + build & upload the static files as an artifact
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Build static files
14+ id : build
15+ run : sh build.sh
16+
17+ - name : Upload static files as artifact
18+ id : deployment
19+ uses : actions/upload-pages-artifact@v3 # or specific "vX.X.X" version tag for this action
20+ with :
21+ path : dist/
22+
23+ # Deployment job
24+ deploy :
25+ environment :
26+ name : github-pages
27+ url : ${{ steps.deployment.outputs.page_url }}
28+ runs-on : ubuntu-latest
29+ needs : build
30+ steps :
31+ - name : Deploy to GitHub Pages
32+ id : deployment
33+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 33 "notes" : " **Full Changelog**: https://github.com/DEVtheOPS/kore/commits/v0.1.0\n\n **Full Changelog**: https://github.com/DEVtheOPS/kore/commits/v0.1.0" ,
44 "pub_date" : " 2026-02-02T07:55:22Z" ,
55 "platforms" : {}
6- }
6+ }
You can’t perform that action at this time.
0 commit comments