Skip to content

Include updates to repro_project #6

Include updates to repro_project

Include updates to repro_project #6

on:
push:
branches: main
name: Render and Publish Logbook
permissions:
contents: write
pages: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: Install R dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
packages: |
any::here
any::fs
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
path: logbook/
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}