Skip to content

moved the introduction to DAGs file to the preamble folder #6

moved the introduction to DAGs file to the preamble folder

moved the introduction to DAGs file to the preamble folder #6

Workflow file for this run

name: Build website to GitHub Pages
on:
push:
branches:
- main
# You need these permissions to publish to GitHub pages
permissions:
contents: write
pages: write
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
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tinytex: false
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Install R package dependencies
uses: r-lib/actions/setup-r-dependencies@v2
with:
cache-version: 2
- name: Publish to GitHub Pages (and render)
uses: quarto-dev/quarto-actions/publish@v2
with:
target: gh-pages
env:
# This secret is always available for github actions
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}