Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
tagbot + manual tag multidocs rebuild trigger
  • Loading branch information
jack-champagne committed Nov 1, 2025
commit 5bff7b346581f7f69a07909697d79af28ef75ae5
4 changes: 4 additions & 0 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,7 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
ssh: ${{ secrets.DOCUMENTER_KEY }}
- name: Re-trigger docs build
uses: peter-evans/repository-dispatch@v3
with:
event-type: tagbot-release-created
27 changes: 27 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches:
- main
tags: ['*']
repository_dispatch:
types: [tagbot-release-created]
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
Expand Down Expand Up @@ -43,3 +45,28 @@ jobs:
DocMeta.setdocmeta!(QuantumCollocation, :DocTestSetup, :(using QuantumCollocation); recursive=true)
doctest(QuantumCollocation)'

tagbot-dispatch:
name: Dispatch on TagBot Release
runs-on: ubuntu-latest
needs: docs
if: github.event_name == 'repository_dispatch'
steps:
- name: Dispatch PiccoloMultiDocs workflow
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: harmoniqs/PiccoloMultiDocs.jl
event-type: rebuild-docs

tag-push-dispatch:
name: Dispatch on Tag Push
runs-on: ubuntu-latest
needs: docs
if: github.ref_type == 'tag'
steps:
- name: Dispatch PiccoloMultiDocs workflow
uses: peter-evans/repository-dispatch@v2
with:
token: ${{ secrets.REPO_ACCESS_TOKEN }}
repository: harmoniqs/PiccoloMultiDocs.jl
event-type: rebuild-docs
Loading