Skip to content

Commit 7f96602

Browse files
authored
Update cd.yml
1 parent e2c0ee7 commit 7f96602

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed

.github/workflows/cd.yml

+6-11
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,10 @@ jobs:
2626
files: setup.py
2727
env:
2828
VERSION: ${{ env.GIT_TAG }}
29-
- name: Debug
29+
- name: Build and publish
30+
env:
31+
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
32+
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
3033
run: |
31-
cat setup.py
32-
echo $GIT_TAG
33-
echo ${{ env.GIT_TAG }}
34-
# - name: Build and publish
35-
# env:
36-
# TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
37-
# TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
38-
# run: |
39-
# python setup.py sdist bdist_wheel
40-
# twine upload dist/*
34+
python setup.py sdist bdist_wheel
35+
twine upload dist/*

0 commit comments

Comments
 (0)