File tree Expand file tree Collapse file tree 2 files changed +43
-2
lines changed
Expand file tree Collapse file tree 2 files changed +43
-2
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy Landing Page
2+
3+ on :
4+ push :
5+ branches : [main]
6+
7+ permissions :
8+ contents : read
9+ pages : write
10+ id-token : write
11+
12+ jobs :
13+ build :
14+ runs-on : ubuntu-latest
15+
16+ steps :
17+ - uses : actions/checkout@v6
18+
19+ - uses : actions/setup-node@v6
20+ with :
21+ node-version : 22
22+
23+ - run : npm run build
24+
25+ - uses : actions/upload-pages-artifact@v3
26+ with :
27+ path : build/
28+
29+ deploy :
30+
31+ needs : build
32+ runs-on : ubuntu-latest
33+ environment :
34+ name : github-pages
35+ url : ${{ steps.deployment.outputs.page_url }}
36+
37+ steps :
38+ - name : Deploy to GitHub Pages
39+ uses : actions/deploy-pages@v4
40+ id : deployment
Original file line number Diff line number Diff line change 3737 " last 1 firefox version" ,
3838 " last 1 safari version"
3939 ]
40- }
41- }
40+ },
41+ "homepage" : " https://aossie-org.github.io/Resonate-Website"
42+ }
You can’t perform that action at this time.
0 commit comments