Skip to content

Commit

Permalink
fix new version condition checking in package publishing action
Browse files Browse the repository at this point in the history
  • Loading branch information
JacksonBurns authored Jun 13, 2023
1 parent 234d039 commit 170fbfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -88,4 +88,4 @@ jobs:
grayskull pypi astartes
cd astartes
conda build .

0 comments on commit 170fbfc

Please sign in to comment.