Skip to content

Commit

Permalink
ci: once again updated ci
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminHalko committed Feb 22, 2024
1 parent 9e59ab2 commit 1ba8b04
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ jobs:
bump_version:
name: Bump version
runs-on: ubuntu-latest
id: bump_version
outputs:
released: ${{ steps.python_semantic_release.outputs.released }}
permissions:
id-token: write
contents: write
Expand All @@ -31,7 +32,7 @@ jobs:
make_sdist:
name: Make SDist
needs: bump_version
if: ${{ steps.bump_version.outputs.released == 'true' }}
if: ${{ needs.bump_version.outputs.released == 'true' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -47,7 +48,7 @@ jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
needs: bump_version
if: ${{ steps.bump_version.outputs.released == 'true' }}
if: ${{ needs.bump_version.outputs.released == 'true' }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand Down

0 comments on commit 1ba8b04

Please sign in to comment.