Skip to content

Commit

Permalink
Fixed dependency issue in pipeline
Browse files Browse the repository at this point in the history
The release section of the pipeline didn't depend on the "windows" step to complete. This commit fixes this.
  • Loading branch information
GeroVanMi committed May 17, 2023
1 parent cd7a10d commit 572892d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/maturin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [macos]
needs: [macos, windows]
permissions:
# Used to upload release artifacts
contents: write
Expand Down

0 comments on commit 572892d

Please sign in to comment.