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+ on :
2+ push :
3+ branches :
4+ - main
5+
6+ name : Render and Publish
7+
8+ jobs :
9+ build :
10+ runs-on : ubuntu-latest
11+
12+ steps :
13+ - name : Check out repository
14+ uses : actions/checkout@v4
15+
16+ - name : Set up Quarto
17+ uses : quarto-dev/quarto-actions/setup@v2
18+
19+ - name : Build Site
20+ run : quarto render .
21+
22+ - name : Upload static files as artifact
23+ id : deployment
24+ uses : actions/upload-pages-artifact@v4
25+ with :
26+ path : _site/
27+
28+ deploy :
29+ permissions :
30+ pages : write
31+ id-token : write
32+ environment :
33+ name : github-pages
34+ url : ${{ steps.deployment.outputs.page_url }}
35+ runs-on : ubuntu-latest
36+ needs : build
37+ steps :
38+ - name : Deploy to GitHub Pages
39+ id : deployment
40+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change 1+ /.quarto /
2+ ** /* .quarto_ipynb
3+
4+ _site /
Original file line number Diff line number Diff line change 1+ project :
2+ type : website
3+
4+ website :
5+ title : " NHS Open Analytics Community"
6+ navbar :
7+ left :
8+ - href : index.qmd
9+ text : Home
10+ - about.qmd
11+
12+ format :
13+ html :
14+ theme :
15+ - cosmo
16+ - brand
17+ css : styles.css
18+ toc : true
19+
20+
21+
Original file line number Diff line number Diff line change 1+ ---
2+ title : " About"
3+ ---
4+
5+ About this site
Original file line number Diff line number Diff line change 1+ ---
2+ title : " NHS Open Analytics Community"
3+ ---
4+
5+ This is a Quarto website.
6+
7+ To learn more about Quarto websites visit < https://quarto.org/docs/websites > .
Original file line number Diff line number Diff line change 1+ /* css styles */
You can’t perform that action at this time.
0 commit comments