File tree Expand file tree Collapse file tree 4 files changed +37
-2
lines changed
Expand file tree Collapse file tree 4 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1+
2+ name : ' Deploy'
3+
4+ on :
5+ push :
6+ branches :
7+ - master
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-20.04
12+ steps :
13+ - name : checkout
14+ uses : actions/checkout@v3
15+ - name : setup-python
16+ uses : actions/setup-python@v4
17+ with :
18+ python-version : ' 3.6'
19+ cache : ' pip'
20+ - name : install-requirements
21+ run : pip install -r requirements.txt
22+ - name : check-format
23+ run : python ./check_format.py
24+ - name : deploy-package
25+ uses : remorses/pypi@master
26+ with :
27+ setupfile : ./setup.py
28+ username : ${{secrets.PYPI_USERNAME}}
29+ password : ${{secrets.PYPI_PASSWORD}}
Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4+ v. 1.8.1
5+ --------
6+ * 15 Mar 2023*
7+
8+ - automated deployment to pypi
9+
410v. 1.8.0
511--------
612* 11 Mar 2023*
Original file line number Diff line number Diff line change @@ -110,7 +110,7 @@ def get_arguments():
110110
111111
112112def show_version ():
113- print ("1.8.0 " )
113+ print ("1.8.1 " )
114114
115115
116116def get_song ():
Original file line number Diff line number Diff line change 1- __version__ = "1.8.0 "
1+ __version__ = "1.8.1 "
You can’t perform that action at this time.
0 commit comments