Skip to content

deps(deps): bump coverage from 7.14.1 to 7.14.3 #88

deps(deps): bump coverage from 7.14.1 to 7.14.3

deps(deps): bump coverage from 7.14.1 to 7.14.3 #88

Workflow file for this run

# SPDX-FileCopyrightText: 2025 Alexandre Gomes Gaigalas <alganet@gmail.com>
#
# SPDX-License-Identifier: ISC
name: Documentation
on:
push:
branches: [main]
tags:
- 'v*'
workflow_dispatch:
permissions:
contents: write
jobs:
docs-deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-python@v6
with:
python-version: '3.13'
- uses: astral-sh/setup-uv@v7
- run: make sync-frozen
- name: Configure Git
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- if: github.ref == 'refs/heads/main'
run: make docs-deploy-dev-main
- if: startsWith(github.ref, 'refs/tags/v')
run: make docs-deploy-versioned VERSION=${GITHUB_REF#refs/tags/v}