Skip to content

Commit

Permalink
ci: updated workflow again
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Feb 22, 2024
1 parent 93d55bc commit 734760a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
make_sdist:
name: Make SDist
needs: bump_version
if: ${{ jobs.bump_version.outputs.released }}
if: ${{ steps.bump_version.outputs.released == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -46,7 +46,7 @@ jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
needs: bump_version
if: ${{ jobs.bump_version.outputs.released }}
if: ${{ steps.bump_version.outputs.released == 'true' }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit 734760a

Please sign in to comment.