File tree 1 file changed +2
-14
lines changed
1 file changed +2
-14
lines changed Original file line number Diff line number Diff line change @@ -24,30 +24,18 @@ jobs:
24
24
run : |
25
25
pip install .
26
26
python -m build --sdist --wheel
27
- # - name: Build wheel with cibuildwheel
28
- # if: startsWith(github.ref, 'refs/tags')
29
- # run: |
30
- # pip install cibuildwheel
31
- # cibuildwheel --platform linux
32
- # env:
33
- # #it is not working with python 3.6, which is outdated and no longer supported by many modern packages, including scikit-build-core.
34
- # CIBW_SKIP: "cp36-*"
35
- # CIBW_BUILD: "cp38-* cp39-* cp310-* cp311-* cp312-*"
36
-
37
27
38
28
- name : Publish distribution 📦 to Test PyPI
39
- # if: startsWith(github.ref, 'refs/tags')
29
+ if : startsWith(github.ref, 'refs/tags')
40
30
run : |
41
- #twine upload --skip-existing --repository testpypi wheelhouse/* --verbose
42
31
twine upload --skip-existing --repository testpypi dist/*.tar.gz --verbose
43
-
44
32
env :
45
33
TWINE_USERNAME : __token__
46
34
TWINE_PASSWORD : ${{ secrets.TEST_PYPI_PASSWORD }}
47
35
48
36
49
37
- name : Publish distribution 📦 to PyPI
50
- # if: startsWith(github.ref, 'refs/tags')
38
+ if : startsWith(github.ref, 'refs/tags')
51
39
run : |
52
40
twine upload --skip-existing dist/*.tar.gz --verbose
53
41
env :
You can’t perform that action at this time.
0 commit comments