swydd/.github/workflows/docs.yml

44 lines
787 B
YAML
Raw Normal View History

name: GitHub Pages
on:
push:
tags: [ "v*.*" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
2024-10-24 18:38:35 -05:00
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
2024-07-19 14:10:33 -05:00
- name: build docs
2024-10-24 18:38:35 -05:00
run: ./tasks.py build-docs
- name: Upload artifact
2024-07-19 14:14:34 -05:00
uses: actions/upload-pages-artifact@v3
with:
2024-10-24 18:38:35 -05:00
path: ./docs/build
deploy:
runs-on: ubuntu-latest
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
2024-07-19 14:14:34 -05:00
uses: actions/deploy-pages@v4