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 | |
pull_request: | |
branches: main | |
# to be able to trigger a manual build | |
workflow_dispatch: | |
name: Render and deploy Blog | |
env: | |
RENV_PATHS_ROOT: ~/.local/share/renv | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v3 | |
# - name: Replace smart quotes in Markdown files | |
#run: | | |
# chmod +x ./replace_smart_quotes.sh | |
# ./replace_smart_quotes.sh | |
- uses: quarto-dev/quarto-actions/setup@v2 | |
#with: | |
#version: 1.4.515 | |
- uses: r-lib/actions/setup-r@v2 | |
with: | |
r-version: '4.1.1' # The R version to download (if necessary) and use. | |
- uses: r-lib/actions/setup-renv@v2 | |
# - name: Cache packages | |
# uses: actions/cache@v1 | |
# with: | |
# path: ${{ env.RENV_PATHS_ROOT }} | |
# key: ${{ runner.os }}-renv-${{ hashFiles('**/renv.lock') }} | |
# restore-keys: | | |
# ${{ runner.os }}-renv- | |
# | |
# - name: Restore packages | |
# shell: Rscript {0} | |
# run: | | |
# if (!requireNamespace("renv", quietly = TRUE)) install.packages("renv") | |
# renv::restore() | |
- name: Render and Publish | |
uses: quarto-dev/quarto-actions/publish@v2 | |
with: | |
target: gh-pages | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# Works with docs/ | |
# - name: Render blog | |
# run: | | |
# quarto render | |
# - name: Push rendered code | |
# uses: EndBug/add-and-commit@v9 | |
# with: | |
# default_author: github_actions |