From 170fbfc417b31c0e1d3f538ed7bc180cf453e03b Mon Sep 17 00:00:00 2001 From: Jackson Burns <33505528+JacksonBurns@users.noreply.github.com> Date: Tue, 13 Jun 2023 10:34:10 -0400 Subject: [PATCH] fix new version condition checking in package publishing action --- .github/workflows/publish_packages.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_packages.yml b/.github/workflows/publish_packages.yml index 39dfa03..bb80e0c 100644 --- a/.github/workflows/publish_packages.yml +++ b/.github/workflows/publish_packages.yml @@ -29,7 +29,7 @@ jobs: name: Build and publish Python 🐍 distributions 📦 to PyPI runs-on: ubuntu-latest needs: check-for-new-release - if: needs.check-for-new-release.outputs.do_publish + if: ${{ needs.check-for-new-release.outputs.do_publish == 'true' }} steps: - uses: actions/checkout@master - name: Set up Python 3.10 @@ -88,4 +88,4 @@ jobs: grayskull pypi astartes cd astartes conda build . - \ No newline at end of file +