Skip to content

Commit 8317ba8

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents b6a11f0 + 81244c2 commit 8317ba8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/quarto.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Docs Deploy
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Check out repository
13+
uses: actions/checkout@v3
14+
- name: Set up Quarto
15+
uses: quarto-dev/quarto-actions/setup@v2
16+
with:
17+
tinytex: true
18+
path: docs
19+
- name: Publish to GitHub Pages (and render)
20+
uses: quarto-dev/quarto-actions/publish@v2
21+
with:
22+
target: gh-pages
23+
path: docs
24+
env:
25+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)