Skip to content

Update from copier (2026-04-12T06:19:10) #27

Update from copier (2026-04-12T06:19:10)

Update from copier (2026-04-12T06:19:10) #27

Workflow file for this run

name: Docs
on:
<<<<<<< before updating

Check failure on line 3 in .github/workflows/docs.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/docs.yaml

Invalid workflow file

You have an error in your yaml syntax on line 3
push:
branches: ["main"]
tags: ["v*"]
=======
workflow_run:
workflows: ["Build Status"]
branches: [main]
types: [completed]
>>>>>>> after updating
workflow_dispatch:
permissions:
<<<<<<< before updating
contents: write
=======
actions: read
contents: write
>>>>>>> after updating
jobs:
docs:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
steps:
<<<<<<< before updating
- uses: actions-ext/yardang@main
=======
- uses: actions/checkout@v6
- uses: actions-ext/python/setup@main
- name: Download dist from build
uses: actions/download-artifact@v7
with:
pattern: dist-ubuntu-latest*
merge-multiple: true
path: dist
run-id: ${{ github.event.workflow_run.id }}
github-token: ${{ secrets.GITHUB_TOKEN }}
repository: ${{ github.repository }}
if: github.event_name == 'workflow_run'
- name: Install from wheel
run: |
uv pip install dist/*.whl
uv pip install yardang
if: github.event_name == 'workflow_run'
- name: Install from source (manual trigger)
run: |
uv pip install .[develop]
uv pip install yardang
if: github.event_name == 'workflow_dispatch'
- run: yardang build
- uses: peaceiris/actions-gh-pages@v4
>>>>>>> after updating
with:
token: ${{ secrets.GITHUB_TOKEN }}