Skip to content

docs: draft of project, taking ideas from the issue. Closes #5 #2

docs: draft of project, taking ideas from the issue. Closes #5

docs: draft of project, taking ideas from the issue. Closes #5 #2

Workflow file for this run

name: Render and Publish
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
# To install LaTeX to build PDF book
tinytex: false
# uncomment below and fill to pin a version
# version: SPECIFIC-QUARTO-VERSION-HERE
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Install package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
- name: Publish to Netlify (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: netlify
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}