Skip to content

Commit

Permalink
Fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
ketozhang committed Apr 29, 2024
1 parent d48b63f commit cc742ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
path: dist/

- name: Publish package to PyPI
if: ! ${{ inputs.disable-publish || false }} # Only skips if inputs.disable-publish is true
if: ${{ !(inputs.disable-publish || false) }} # Only skips if inputs.disable-publish is true
# All files in dist/ are published
uses: pypa/gh-action-pypi-publish@release/v1
with:
Expand Down

0 comments on commit cc742ab

Please sign in to comment.