Skip to content

Release 0.29.1

Release 0.29.1 #1182

Workflow file for this run

name: Documentation
on:
push:
branches:
- main
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+' # v0.26.0 yes, v0.26.0-beta no
pull_request:
types: [labeled, synchronize, reopened]
jobs:
call:
# A 'labeled' event fires once per label added, and re-evaluates against the PR's
# *current* full label set — so adding several labels in a row would otherwise
# re-run this job on every subsequent label add. Only react to 'labeled' when it's
# this specific label; for other trigger types (synchronize/reopened), fall back to
# checking the current label set as before.
if: >
github.event_name != 'pull_request' ||
(github.event.action == 'labeled' && github.event.label.name == 'run documentation') ||
(github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'run documentation'))
uses: control-toolbox/CTActions/.github/workflows/documentation.yml@main
with:
use_ct_registry: true
secrets:
SSH_KEY: ${{ secrets.SSH_KEY }}