File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed
Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish Python 🐍 distributions 📦 to PyPI
2+ on : push
3+
4+ jobs :
5+ build-n-publish :
6+ name : Build and publish Python 🐍 distributions 📦 to PyPI
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v2
10+ - uses : actions/setup-python@v2
11+ - name : Install dependencies
12+ run : |
13+ python -m pip install --upgrade pip
14+ pip install setuptools wheel twine
15+ - name : Build and publish
16+ env :
17+ TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
18+ TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
19+ run : |
20+ python setup.py sdist bdist_wheel
21+ twine upload dist/*
Original file line number Diff line number Diff line change 55
66setuptools .setup (
77 name = "python-bufflog" ,
8- version = "0.0.1 " ,
8+ version = "0.0.2 " ,
99 author = "David Gasquez" ,
10101111 description = "Python logger for Buffer services" ,
You can’t perform that action at this time.
0 commit comments