1 parent 6969cf7 commit c45d0faCopy full SHA for c45d0fa
1 file changed
.github/workflows/linux-push.yml
@@ -7,16 +7,16 @@ on:
7
inputs:
8
runTests:
9
description: "Run tests?"
10
+ type: boolean
11
required: false
- default: false
12
permissions:
13
id-token: write # This is required for requesting the JWT
14
contents: read # This is required for actions/checkout
15
jobs:
16
call_workflow:
17
uses: febiosoftware/febio-workflows/.github/workflows/linux-reusable-push.yml@develop
18
with:
19
- runTests: ${{ inputs.runTests == 'true' || contains(fromJSON('["develop", "develop"]'), github.ref_name) }}
+ runTests: ${{ (github.event_name == 'workflow_dispatch' && inputs.runTests) || (github.event_name == 'push' && contains(fromJSON('["develop"]'), github.ref_name)) }}
20
package-name: febio4
21
package-sdk: true
22
aws-ami-id: ami-0590ebdb5afffb782
0 commit comments