File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 2929 with :
3030 token : ${{ secrets.GITHUB_TOKEN }}
3131 ssh : ${{ secrets.DOCUMENTER_KEY }}
32+ - name : Re-trigger docs build
33+ uses : peter-evans/repository-dispatch@v3
34+ with :
35+ event-type : tagbot-release-created
Original file line number Diff line number Diff line change 55 branches :
66 - main
77 tags : ['*']
8+ repository_dispatch :
9+ types : [tagbot-release-created]
810concurrency :
911 # Skip intermediate builds: always.
1012 # Cancel intermediate builds: only if it is a pull request build.
4345 DocMeta.setdocmeta!(QuantumCollocation, :DocTestSetup, :(using QuantumCollocation); recursive=true)
4446 doctest(QuantumCollocation)'
4547
48+ tagbot-dispatch :
49+ name : Dispatch on TagBot Release
50+ runs-on : ubuntu-latest
51+ needs : docs
52+ if : github.event_name == 'repository_dispatch'
53+ steps :
54+ - name : Dispatch PiccoloMultiDocs workflow
55+ uses : peter-evans/repository-dispatch@v2
56+ with :
57+ token : ${{ secrets.REPO_ACCESS_TOKEN }}
58+ repository : harmoniqs/PiccoloMultiDocs.jl
59+ event-type : rebuild-docs
60+
61+ tag-push-dispatch :
62+ name : Dispatch on Tag Push
63+ runs-on : ubuntu-latest
64+ needs : docs
65+ if : github.ref_type == 'tag'
66+ steps :
67+ - name : Dispatch PiccoloMultiDocs workflow
68+ uses : peter-evans/repository-dispatch@v2
69+ with :
70+ token : ${{ secrets.REPO_ACCESS_TOKEN }}
71+ repository : harmoniqs/PiccoloMultiDocs.jl
72+ event-type : rebuild-docs
You can’t perform that action at this time.
0 commit comments