@@ -35,37 +35,18 @@ jobs:
35
35
36
36
37
37
- name : Publish distribution 📦 to Test PyPI
38
+ if : startsWith(github.ref, 'refs/tags')
38
39
run : |
39
- #python --version
40
- #auditwheel repair dist/aurorafusion*.whl
41
40
twine upload --repository testpypi wheelhouse/* --verbose
42
- #twine upload --repository-url https://test.pypi.org/legacy/ dist/* --verbose
43
41
env :
44
42
TWINE_USERNAME : __token__
45
43
TWINE_PASSWORD : ${{ secrets.TEST_PYPI_PASSWORD }}
46
- # - name: Publish distribution 📦 to Test PyPI
47
- # if: startsWith(github.ref, 'refs/tags')
48
- # uses: pypa/gh-action-pypi-publish@release/v1
49
-
50
- # with:
51
- # password: ${{ secrets.TEST_PYPI_PASSWORD }}
52
- # repository-url: https://test.pypi.org/legacy/
53
- # attestations: false
54
- # Add verbose flag here
55
- # extra_args: "--verbose"
56
- # - name: Publish distribution 📦 to PyPI
57
- # if: startsWith(github.ref, 'refs/tags')
58
- # uses: pypa/gh-action-pypi-publish@release/v1
59
- # with:
60
- # password: ${{ secrets.PYPI_PASSWORD }}
61
-
44
+
62
45
63
46
- name : Publish distribution 📦 to PyPI
47
+ if : startsWith(github.ref, 'refs/tags')
64
48
run : |
65
- #python --version
66
- #auditwheel repair dist/aurorafusion*.whl
67
49
twine upload wheelhouse/* --verbose
68
- #twine upload --repository-url https://pypi.org/legacy/ dist/* --verbose
69
50
env :
70
51
TWINE_USERNAME : __token__
71
52
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
0 commit comments