forked from DGNum/colmena
.github: Run user manual build after main build workflow
This commit is contained in:
parent
804cf1f85e
commit
e609301a72
2 changed files with 11 additions and 3 deletions
8
.github/workflows/manual-stable.yml
vendored
8
.github/workflows/manual-stable.yml
vendored
|
@ -5,9 +5,13 @@
|
||||||
name: Manual (Stable)
|
name: Manual (Stable)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_run:
|
||||||
|
workflows:
|
||||||
|
- Build
|
||||||
branches:
|
branches:
|
||||||
- "release-0.3.x"
|
- release-0.3.x
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
6
.github/workflows/manual.yml
vendored
6
.github/workflows/manual.yml
vendored
|
@ -1,9 +1,13 @@
|
||||||
name: Manual
|
name: Manual
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
workflow_run:
|
||||||
|
workflows:
|
||||||
|
- Build
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
types:
|
||||||
|
- completed
|
||||||
jobs:
|
jobs:
|
||||||
deploy-unstable:
|
deploy-unstable:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
Loading…
Reference in a new issue