Skip to content

Commit

Permalink
ci: Fix Forwarding Boolean Parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichaelis committed May 9, 2024
1 parent 1f5419b commit f34580b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ jobs:
secrets: inherit
with:
release_type: ${{ github.event.inputs.release_type }}
verbose: ${{ github.event.inputs.verbose }}
dryRun: ${{ github.event.inputs.dryRun }}
verbose: ${{ github.event.inputs.verbose == 'true'}}
dryRun: ${{ github.event.inputs.dryRun == 'true' }}
build:
name: "Build"
uses: "./.github/workflows/build.yml"
Expand Down

0 comments on commit f34580b

Please sign in to comment.