Skip to content

Commit

Permalink
ci: add windows to dependency list
Browse files Browse the repository at this point in the history
  • Loading branch information
nmammeri committed Oct 29, 2024
1 parent 88e904e commit 96dc04f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ jobs:
publish-to-testpypi:
name: Publish to TestPyPI
# publish to TestPyPI on any push
needs: [linux, macos, sdist]
needs: [linux, macos, windows, sdist]
runs-on: ubuntu-latest
environment:
name: testpypi
Expand All @@ -229,7 +229,7 @@ jobs:
name: Publish to PyPI
# only publish to PyPI on tag pushes
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, macos, sdist]
needs: [linux, macos, windows, sdist]
runs-on: ubuntu-latest
environment:
name: pypi
Expand Down

0 comments on commit 96dc04f

Please sign in to comment.