We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1836933 commit b574d85Copy full SHA for b574d85
.github/workflows/testing.yml
@@ -5,6 +5,12 @@ on:
5
branches: [ master ]
6
pull_request:
7
8
+ workflow_dispatch:
9
+ inputs:
10
+ nipype_branch:
11
+ description: 'Build specific Nipype branch'
12
+ required: true
13
+ default: 'master'
14
15
16
jobs:
@@ -14,7 +20,10 @@ jobs:
20
steps:
21
- uses: actions/checkout@v2
22
- name: generate the Dockerfile from generate.sh
17
- run: bash generate.sh
23
+ run: |
24
+ BRANCH=${{ github.event.inputs.nipype_branch }}
25
+ BRANCH=${BRANCH:-"master"}
26
+ bash generate.sh $BRANCH
18
27
# In this step, this action saves a list of existing images,
19
28
# the cache is created without them in the post run.
29
# It also restores the cache if it exists.
0 commit comments