File tree Expand file tree Collapse file tree 5 files changed +48
-1
lines changed Expand file tree Collapse file tree 5 files changed +48
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish site
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ workflow_dispatch :
8+
9+ concurrency :
10+ group : " pages"
11+ cancel-in-progress : false
12+
13+ jobs :
14+ build :
15+ name : Deploy docs to GitHub Pages
16+ runs-on : ubuntu-latest
17+ steps :
18+ - name : Checkout
19+ uses : actions/checkout@v2
20+ - name : Setup Pages
21+ uses : actions/configure-pages@v3
22+ - name : Setup node
23+ uses : actions/setup-node@v4
24+ with :
25+ node-version : lts/*
26+ - name : Setup dependencies
27+ run : sudo apt install -y librsvg2-bin pngquant && npm i -g svgo
28+ - name : Build
29+ run : sh/site.sh
30+ - name : Upload
31+ id : deployment
32+ uses : actions/upload-pages-artifact@v3
33+ with :
34+ path : site/
35+ deploy :
36+ permissions :
37+ pages : write
38+ id-token : write
39+ environment :
40+ name : github-pages
41+ url : ${{ steps.deployment.outputs.page_url }}
42+ runs-on : ubuntu-latest
43+ needs : build
44+ steps :
45+ - name : Deploy to GitHub Pages
46+ id : deployment
47+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 33name =" plenticons"
44description =" A library of icons for your custom nodes!"
55author =" Tamás Gálffy"
6- version =" 0.8.2 "
6+ version =" 0.8.3 "
77script =" plenticons.gd"
You can’t perform that action at this time.
0 commit comments