Skip to content

v1.21.1

v1.21.1 #3

Workflow file for this run

name: release-published
on:
release:
types: [published]
jobs:
update-docs:
runs-on: ubuntu-latest
steps:
- name: Update tabmixplus-docs
env:
github-token: ${{ secrets.TABMIXPLUS_DOCS_TOKEN }}
run: |
tag_name=${{ github.event.release.tag_name }}
if [[ $tag_name =~ ^v[0-9] ]]; then
gh workflow run --repo onemen/tabmixplus-docs --ref main deploy.yml --github-token $github-token
fi