Skip to content

Commit 32e68cc

Browse files
authored
fix incorrect skip values/flags (#118)
1 parent 0c170bf commit 32e68cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release-binary.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ jobs:
3838
version: latest
3939
args: >
4040
release --clean
41-
${{ github.event.inputs.skip_publish == 'true' && ' --skip-publish' || '' }}
42-
${{ github.event.inputs.skip_announce == 'true' && ' --skip-announce' || '' }}
41+
${{ github.event.inputs.skip_publish == 'true' && ' --skip publish' || '' }}
42+
${{ github.event.inputs.skip_announce == 'true' && ' --skip announce' || '' }}
4343
env:
4444
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4545
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}

0 commit comments

Comments
 (0)