Skip to content

Switch to GitHub Pages for documentation #67

Switch to GitHub Pages for documentation

Switch to GitHub Pages for documentation #67

Workflow file for this run

on:
push:
branches:
- main
name: Render and Publish
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Netlify
run: npm install netlify-cli -g
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install Jupyter
run: python3 -m pip install jupyter
- name: Setup R
uses: r-lib/actions/setup-r@v2
- name: Install R packages
run: Rscript -e 'install.packages(c("rmarkdown", "knitr", "ggplot2"))'
- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
with:
path: docs
- name: Upload Artifact
uses: actions/upload-pages-artifact@v3
with:
path: docs/_site
deploy:
runs-on: ubuntu-latest
needs: test

Check failure on line 43 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / Render and Publish

Invalid workflow file

The workflow is not valid. .github/workflows/deploy.yml (Line: 43, Col: 12): Job 'deploy' depends on unknown job 'test'.
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4