-
-
Notifications
You must be signed in to change notification settings - Fork 11
35 lines (29 loc) · 915 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
name: Build Quarto Document
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Render Quarto documents
run: |
quarto render index.qmd --output docs/index.html
quarto render simulation.qmd --output docs/simulation.html
quarto render datatools.qmd --output docs/datatools.html
quarto render ASReviewLAB.qmd --output docs/ASReviewLAB.html
- name: Commit and push changes
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git add docs/ASReviewLAB.html
git commit -m "Update ASReviewLAB.html"
git push