We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 649c038 commit 239aaa9Copy full SHA for 239aaa9
.github/workflows/ci.yml
@@ -227,6 +227,16 @@ jobs:
227
- name: Display package file list
228
run: ls -R
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
+
240
- name: Release
241
uses: softprops/action-gh-release@v1
242
with:
src/ansys/fluent/core/_version.py
@@ -6,7 +6,7 @@
6
"""
7
8
# major, minor, patch
9
-version_info = 0, 3, "dev0"
+version_info = 0, 4, "dev0"
10
11
# Nice string for the version
12
__version__ = ".".join(map(str, version_info))
0 commit comments