Skip to content

feat: add content type helpers (#243) #17

feat: add content type helpers (#243)

feat: add content type helpers (#243) #17

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
default:
runs-on: ubuntu-latest
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: 3.x
check-latest: true
cache: 'pip'
- uses: actions/setup-node@v4
- uses: quarto-dev/quarto-actions/setup@v2
- run: make deps
- run: make build
- run: make install
- run: make docs
- id: release
uses: pypa/gh-action-pypi-publish@release/v1
- id: site
working-directory: docs
env:
ENV: prod
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
run: make deploy