diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index 394a0d390..4ebf3ec50 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -94,7 +94,7 @@ jobs: steps: #Retrieve Bailo artifact - name: Download all the dists - if: ${{needs.build.outputs.files-changed-output}} == 'true' + if: needs.build.outputs.files-changed-output == 'true' uses: actions/download-artifact@v3 with: name: python-package-distributions @@ -102,7 +102,7 @@ jobs: # Publish artifact to TestPyPI - name: Publish distribution to TestPyPI - if: ${{needs.build.outputs.files-changed-output}} == 'true' + if: needs.build.outputs.files-changed-output == 'true' uses: pypa/gh-action-pypi-publish@release/v1 with: repository-url: https://test.pypi.org/legacy/ \ No newline at end of file