ci: parameterise cross-package build job with branch name
This commit is contained in:
parent
9496c76fe8
commit
80aab3ae3f
|
@ -11,6 +11,9 @@ on:
|
|||
types:
|
||||
- published
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
which_branch:
|
||||
required: false
|
||||
|
||||
jobs:
|
||||
prepare:
|
||||
|
@ -24,6 +27,7 @@ jobs:
|
|||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.event.inputs.which_branch }}
|
||||
path: source
|
||||
fetch-depth: 0
|
||||
- name: find old versions
|
||||
|
|
Loading…
Reference in New Issue