Skip to content

chore(deps): update actions/checkout digest to 93cb6ef #21

chore(deps): update actions/checkout digest to 93cb6ef

chore(deps): update actions/checkout digest to 93cb6ef #21

Workflow file for this run

name: Quarto Publish
on:
push:
branches:
- main
- renovate/**
pull_request:
jobs:
build-and-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
- name: Set up Quarto
# yamllint disable-line rule:line-length
uses: quarto-dev/quarto-actions/setup@9e48da27e184aa238fcb49f5db75469626d43adb # v2
- name: Render ${{ github.ref_name }} branch
if: github.ref != 'refs/heads/main'
# yamllint disable-line rule:line-length
uses: quarto-dev/quarto-actions/render@9e48da27e184aa238fcb49f5db75469626d43adb # v2
- name: Publish main branch
if: github.ref == 'refs/heads/main'
# yamllint disable-line rule:line-length
uses: quarto-dev/quarto-actions/publish@9e48da27e184aa238fcb49f5db75469626d43adb # v2
with:
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}