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:
227
227
- name : Display package file list
228
228
run : ls -R
229
229
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
+
230
240
- name : Release
231
241
uses : softprops/action-gh-release@v1
232
242
with :
Original file line number Diff line number Diff line change 6
6
"""
7
7
8
8
# major, minor, patch
9
- version_info = 0 , 3 , "dev0"
9
+ version_info = 0 , 4 , "dev0"
10
10
11
11
# Nice string for the version
12
12
__version__ = "." .join (map (str , version_info ))
You can’t perform that action at this time.
0 commit comments