Skip to content

ci(dependabot): bump the actions group across 1 directory with 8 updates #5

ci(dependabot): bump the actions group across 1 directory with 8 updates

ci(dependabot): bump the actions group across 1 directory with 8 updates #5

Workflow file for this run

name: Documentation
on:
push:
branches: [main]
pull_request:
permissions:
contents: read
pages: write
id-token: write
jobs:
build:
#if: ${{ github.repository == 'scifio/scyfio' }}
if: ${{ github.repository == 'DISABLED_WORKFLOW' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: astral-sh/setup-uv@v7
with:
enable-cache: true
python-version: "3.13"
- run: uv run --group docs zensical build --clean --strict
- uses: actions/upload-pages-artifact@v5
with:
path: site
deploy:
if: github.event_name != 'pull_request'
needs: build
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/configure-pages@v6
- uses: actions/deploy-pages@v5
id: deployment