Skip to content

Commit b6d5bc6

Browse files
committed
Merge branch 'main' of https://github.com/brasseurp/gmp
2 parents 32fbe4f + c750fc5 commit b6d5bc6

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/quarto-publish.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Deploy Quarto site
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Install Quarto
17+
uses: quarto-dev/quarto-actions/setup@v2
18+
with:
19+
version: latest
20+
21+
- name: Render site
22+
run: quarto render
23+
24+
- name: Deploy to GitHub Pages
25+
uses: actions/upload-pages-artifact@v1
26+
with:
27+
path: _site
28+
29+
- name: Deploy
30+
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)