Skip to content

Commit 0afee22

Browse files
committed
Fix condition for publishing to GitHub packages during dry run
1 parent 00c3582 commit 0afee22

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/create-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,5 +88,5 @@ jobs:
8888
GITHUB_TOKEN: ${{ steps.generate-token.outputs.token }}
8989

9090
- name: publish to github packages
91-
if: ${{ !github.event.inputs.dry_run }}
91+
if: ${{ github.event.inputs.dry_run != 'true' }}
9292
run: npm publish --registry=https://npm.pkg.github.com/

0 commit comments

Comments
 (0)