-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (38 loc) · 822 Bytes
/
quarto.yml
File metadata and controls
41 lines (38 loc) · 822 Bytes
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
---
on:
push:
branches: main
paths:
- docs/**
pull_request:
branches: main
paths:
- docs/**
registry_package:
types: [published, updated]
workflow_dispatch:
name: Render and deploy Book
permissions:
contents: write
packages: read
pages: write
jobs:
docker:
runs-on: ubuntu-latest
container: ghcr.io/trr266/pay-ratio-disclosure:main
steps:
-
name: Checkout repository
uses: actions/checkout@v4
-
name: Render book to all formats
run: |
export HOME=/root
quarto render docs --no-cache
-
name: Deploy 🚀
if: github.event_name != 'pull_request'
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: docs/_book