Skip to content

Commit

Permalink
fix: build args check
Browse files Browse the repository at this point in the history
  • Loading branch information
theowenyoung committed Jan 28, 2021
1 parent 787d015 commit 334ba60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/actionsflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Run Actionsflow
uses: actionsflow/actionsflow-action@v1
with:
args: build --include ${{ github.event.inputs.include }} -f ${{github.event.inputs.force}} --verbose ${{github.event.inputs.verbose}}
args: "build --include ${{ github.event.inputs.include || ''}} -f ${{github.event.inputs.force=='true' && 'true' || 'false'}} --verbose ${{github.event.inputs.verbose=='true' && 'true' || 'false'}}"
json-secrets: ${{ toJSON(secrets) }}
json-github: ${{ toJSON(github) }}
- name: Setup act
Expand Down

0 comments on commit 334ba60

Please sign in to comment.