-
Notifications
You must be signed in to change notification settings - Fork 2
54 lines (49 loc) · 1.45 KB
/
publish.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Quarto Build
on: # either one of the following four cases
workflow_dispatch: # manually trigger
schedule:
- cron: '0 0 * * 0' # weekly (every Sunday)
push:
branches: main
pull_request:
branches:
- main
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: write # needed to allow julia-actions/cache to delete old caches that it has created
contents: write # needed for Quarto render
if: ${{ !github.event.pull_request.draft }}
steps:
- uses: actions/checkout@v4
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
with:
precompile: true
- uses: cardinalby/export-env-action@v2
with:
envFile: '_environment'
expand: 'true'
- name: Quarto Render
uses: quarto-dev/quarto-actions/render@v2
with:
to: html
- name: Quarto Publish
if: ${{ github.ref == 'refs/heads/main' && github.event_name != 'pull_request' }}
uses: quarto-dev/quarto-actions/publish@v2
with:
render: 'false' # rendered in the previous step already
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}