File tree Expand file tree Collapse file tree 3 files changed +831
-0
lines changed
Expand file tree Collapse file tree 3 files changed +831
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Deploy XLS Standards to GitHub Pages
2+
3+ on :
4+ push :
5+ branches : [ master ]
6+ pull_request :
7+ branches : [ master ]
8+ workflow_dispatch :
9+
10+ permissions :
11+ contents : read
12+ pages : write
13+ id-token : write
14+
15+ concurrency :
16+ group : " pages"
17+ cancel-in-progress : false
18+
19+ jobs :
20+ build :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - name : Checkout
24+ uses : actions/checkout@v4
25+
26+ - name : Setup Python
27+ uses : actions/setup-python@v4
28+ with :
29+ python-version : ' 3.11'
30+
31+ - name : Install dependencies
32+ run : |
33+ python -m pip install --upgrade pip
34+ pip install markdown beautifulsoup4 jinja2 pyyaml
35+
36+ - name : Build site
37+ run : python build_site.py
38+
39+ - name : Setup Pages
40+ uses : actions/configure-pages@v4
41+
42+ - name : Upload artifact
43+ uses : actions/upload-pages-artifact@v3
44+ with :
45+ path : ' _site'
46+
47+ deploy :
48+ environment :
49+ name : github-pages
50+ url : ${{ steps.deployment.outputs.page_url }}
51+ runs-on : ubuntu-latest
52+ needs : build
53+ steps :
54+ - name : Deploy to GitHub Pages
55+ id : deployment
56+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 11.DS_Store
22/.idea
3+ _site /
4+ templates /
You can’t perform that action at this time.
0 commit comments