We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f6b0ca commit cdfc5cfCopy full SHA for cdfc5cf
.github/workflows/python-package.yml
@@ -44,4 +44,23 @@ jobs:
44
python -m pip install coveralls==2.2
45
coveralls --service=github
46
env:
47
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
48
+
49
+ - name: Build Pypi Files
50
+ run: |
51
+ pip install --upgrade setuptools
52
+ pip install wheel
53
+ pip install twine
54
+ git config --global user.name "${{secrets.GIT_USER}}"
55
+ git config --global user.email "${{secrets.GIT_GMAIL}}"
56
+ rm -rf build dist gunfolds.egg-info
57
+ git stash
58
+ git fetch --all
59
+ git checkout version
60
+ bash version_update.sh
61
+ python3 setup.py sdist bdist_wheel
62
63
+ - name: Publish to Pypi
64
+ uses: pypa/gh-action-pypi-publish@release/v1
65
+ with:
66
+ password: ${{ secrets.PYPI_PASSWORD }}
0 commit comments