Skip to content

refactor: 馃摑 use uv not pipx in CONTRIBUTING (#336) #181

refactor: 馃摑 use uv not pipx in CONTRIBUTING (#336)

refactor: 馃摑 use uv not pipx in CONTRIBUTING (#336) #181

Workflow file for this run

name: Build website
on:
push:
branches:
- main
# Limit token permissions for security
permissions: read-all
jobs:
build-website:
runs-on: ubuntu-latest
# Stop builds from running more than one at a time, to save resources and also
# to limit conflicts when uploading to the hosting provider.
concurrency:
group: build-website-group
cancel-in-progress: true
steps:
# This is a useful security step to check for unexpected outbound calls from the runner,
# which could indicate a compromised token or runner.
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@bf7454d06d71f1098171f2acdf0cd4708d7b5920 # v2.20.0
with:
egress-policy: audit
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
- name: Render and publish to Netlify
uses: quarto-dev/quarto-actions/publish@8a96df13519ee81fd526f2dfca5962811136661b # v2.2.0
with:
target: netlify
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}