File tree Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Expand file tree Collapse file tree 2 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -227,6 +227,16 @@ jobs:
227227 - name : Display package file list
228228 run : ls -R
229229
230+ - name : Upload to Private PyPi
231+ run : |
232+ pip install twine
233+ python -m twine upload --skip-existing ./**/*.whl
234+ python -m twine upload --skip-existing ./**/*.tar.gz
235+ env :
236+ TWINE_USERNAME : PAT
237+ TWINE_PASSWORD : ${{ secrets.PYANSYS_PYPI_PRIVATE_PAT }}
238+ TWINE_REPOSITORY_URL : https://pkgs.dev.azure.com/pyansys/_packaging/pyansys/pypi/upload
239+
230240 - name : Release
231241 uses : softprops/action-gh-release@v1
232242 with :
Original file line number Diff line number Diff line change 66"""
77
88# major, minor, patch
9- version_info = 0 , 3 , "dev0"
9+ version_info = 0 , 4 , "dev0"
1010
1111# Nice string for the version
1212__version__ = "." .join (map (str , version_info ))
You can’t perform that action at this time.
0 commit comments