Merge branch 'main' of github.com:langcog/experimentology #56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: main | |
name: Render and Publish | |
jobs: | |
build-deploy: | |
# runs-on: ubuntu-latest | |
runs-on: macOS-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v3 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
with: | |
# To install LaTeX to build PDF book | |
tinytex: true | |
# uncomment below and fill to pin a versionr | |
version: 1.3.450 | |
- name: Set up renv | |
uses: r-lib/actions/setup-renv@v2 | |
# - name: Render Book project | |
# uses: quarto-dev/quarto-actions/render@v2 | |
# with: | |
# to: html | |
- name: Render to pdf | |
run: quarto render --to pdf --profile pdf | |
- name: Render to html | |
run: quarto render --to html --profile html --no-clean | |
- name: Publish to GitHub Pages | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
render: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # this secret is always available for github actions | |