File tree Expand file tree Collapse file tree 3 files changed +31
-4
lines changed
Expand file tree Collapse file tree 3 files changed +31
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: PyPI release
22on : [push]
33
44jobs :
5- pypi :
5+ pypi_kivy_garden_mapview :
66 runs-on : ubuntu-18.04
77 steps :
88 - uses : actions/checkout@v1
@@ -16,10 +16,30 @@ jobs:
1616 - name : Build
1717 run : |
1818 python setup.py sdist bdist_wheel
19+ - name : Publish package
20+ if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
21+ 22+ with :
23+ user : __token__
24+ password : ${{ secrets.pypi_password_kivy_garden_mapview }}
25+
26+ pypi_mapview :
27+ runs-on : ubuntu-18.04
28+ steps :
29+ - uses : actions/checkout@v1
30+ - name : Set up Python 3.x
31+ uses : actions/setup-python@v1
32+ with :
33+ python-version : 3.x
34+ - name : Install dependencies
35+ run : |
36+ python -m pip install --user --upgrade setuptools wheel
37+ - name : Build
38+ run : |
1939 python setup_meta.py sdist bdist_wheel
2040 - name : Publish package
2141 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
22422343 with :
2444 user : __token__
25- password : ${{ secrets.pypi_password }}
45+ password : ${{ secrets.pypi_password_mapview }}
Original file line number Diff line number Diff line change 11# Change Log
22
3- ## [ Unreleased]
43
4+ ## [ 1.0.4]
5+
6+ - Fix PyPI auto-deployment
7+
8+ ## [ 1.0.3]
9+
10+ - Genral code linting/cleaning
11+ - Increase coverage testing from 14% to 35%
512 - Fix ` Downloader ` now checks for HTTP status code, refs #6
613
714## [ 1.0.2]
Original file line number Diff line number Diff line change 1- __version__ = "1.0.3 "
1+ __version__ = "1.0.4 "
You can’t perform that action at this time.
0 commit comments