Skip to content

Commit

Permalink
Use == 'true' for github cd cli extras workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
josephmckinsey authored Oct 25, 2024
1 parent c0851f8 commit 4949aa2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cd-cli-extras.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
path: helics_cli_extras/dist

- name: Publish package to TestPyPI
if: github.event.inputs.publish_to_test_pypi
if: github.event.inputs.publish_to_test_pypi == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
Expand All @@ -73,7 +73,7 @@ jobs:
packages-dir: helics_cli_extras/dist

- name: Publish package to PyPI
if: github.event.inputs.publish_to_pypi
if: github.event.inputs.publish_to_pypi == 'true'
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: helics_cli_extras/dist

0 comments on commit 4949aa2

Please sign in to comment.