From ed2fdd8928ac6f7a718448650db9bf793ba87284 Mon Sep 17 00:00:00 2001 From: Joseph McKinsey <31461013+josephmckinsey@users.noreply.github.com> Date: Fri, 25 Oct 2024 11:48:08 -0600 Subject: [PATCH] Remove ${{ from if statement in github cd-cli-extras workflow --- .github/workflows/cd-cli-extras.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cd-cli-extras.yml b/.github/workflows/cd-cli-extras.yml index f7070dd..9e0db05 100644 --- a/.github/workflows/cd-cli-extras.yml +++ b/.github/workflows/cd-cli-extras.yml @@ -59,7 +59,7 @@ jobs: path: helics_cli_extras/dist - name: Publish package to TestPyPI - if: ${{ github.event.inputs.publish_to_pypi == true }} + if: github.event.inputs.publish_to_pypi uses: pypa/gh-action-pypi-publish@release/v1 with: user: __token__ @@ -68,7 +68,7 @@ jobs: packages-dir: helics_cli_extras/dist - name: Publish package to PyPI - if: ${{ github.event.inputs.publish_to_pypi == true }} + if: github.event.inputs.publish_to_pypi uses: pypa/gh-action-pypi-publish@release/v1 with: - packages-dir: helics_cli_extras/dist \ No newline at end of file + packages-dir: helics_cli_extras/dist