We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f00f733 commit 4a166a7Copy full SHA for 4a166a7
1 file changed
.github/workflows/test_linux.yml
@@ -121,13 +121,17 @@ jobs:
121
name: pymssql-linux-${{ matrix.manylinux }}_${{ matrix.arch }}-${{ github.sha }}
122
path: dist
123
overwrite: true
124
+ - name: Install twine
125
+ run:
126
+ # upgrade packaging for PEP 639
127
+ pip install --upgrade twine packaging>=24.2
128
129
+ - name: Check wheels and dist
130
131
+ twine check dist/*
132
- name: Publish wheels and sdist
133
if: github.repository_owner == 'pymssql' && startsWith(github.ref, 'refs/tags/v')
134
run: |
- # upgrade packaging for PEP 639
- pip install packaging>=24.2 --upgrade
- pip install twine --upgrade
135
twine upload --skip-existing -u __token__ -p ${{secrets.PYMSSQL_PYPI_TOKEN}} dist/*
136
137
#- name: Publish wheels and sdist on test.pypi.org
0 commit comments