File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 inputs :
88 runTests :
99 description : " Run tests?"
10+ type : boolean
1011 required : false
11- default : false
1212permissions :
1313 id-token : write # This is required for requesting the JWT
1414 contents : read # This is required for actions/checkout
1515jobs :
1616 call_workflow :
1717 uses : febiosoftware/febio-workflows/.github/workflows/linux-reusable-push.yml@develop
1818 with :
19- runTests : ${{ inputs.runTests == 'true' || contains(fromJSON('["develop", "develop" ]'), github.ref_name) }}
19+ runTests : ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name) ) }}
2020 package-name : febio4
2121 package-sdk : true
2222 aws-ami-id : ami-0590ebdb5afffb782
Original file line number Diff line number Diff line change 1717 call_workflow :
1818 uses : febiosoftware/febio-workflows/.github/workflows/macos-reusable-push.yml@develop
1919 with :
20- runTests : ${{ inputs.runTests == 'true' || contains(fromJSON('["develop", "develop" ]'), github.ref_name) }}
20+ runTests : ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name) ) }}
2121 package-name : febio4
2222 package-sdk : true
2323 secrets : inherit
Original file line number Diff line number Diff line change 1818 call_workflow :
1919 uses : febiosoftware/febio-workflows/.github/workflows/windows-reusable-push.yml@develop
2020 with :
21- runTests : ${{ inputs.runTests == 'true' || contains(fromJSON('["develop", "develop" ]'), github.ref_name) }}
21+ runTests : ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name) ) }}
2222 package-name : febio4
2323 package-sdk : true
2424 aws-ami-id : ami-0b18c665dbe9efa75
You can’t perform that action at this time.
0 commit comments