We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a38167b commit 159e95dCopy full SHA for 159e95d
.github/workflows/main.yml
@@ -106,7 +106,11 @@ jobs:
106
python setup.py bdist_wheel
107
twine check dist/*
108
- name: Publish the package to pypi
109
- if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository_owner == 'testcontainers'
+ if: >
110
+ github.event_name == 'push'
111
+ && github.ref == 'refs/heads/master'
112
+ && github.repository_owner == 'testcontainers'
113
+ && matrix.python-version == '3.10'
114
env:
115
TWINE_USERNAME: __token__
116
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
0 commit comments