Skip to content

Commit

Permalink
Fix test for boolean input
Browse files Browse the repository at this point in the history
It's not really a boolean..

actions/runner#1483
  • Loading branch information
carhartl committed Apr 21, 2023
1 parent 30dd761 commit ee043b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -37,7 +37,7 @@ jobs:
registry-url: 'https://registry.npmjs.org'
- run: npm install -g npm
- run: npm i
- run: npm run release ${{ github.event.inputs.bump }}${{ github.event.inputs.dry-run && ' -- --dry-run' || '' }}
- run: npm run release ${{ github.event.inputs.bump }}${{ github.event.inputs.dry-run == 'true' && ' -- --dry-run' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit ee043b4

Please sign in to comment.