File tree Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Expand file tree Collapse file tree 2 files changed +30
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ push :
5
+ tags :
6
+ - v*
7
+
8
+ jobs :
9
+ build-n-publish :
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ - name : Set up Python 3.9
14
+ uses : actions/setup-python@v2
15
+ with :
16
+ python-version : 3.9
17
+ - name : Install dependencies
18
+ run : |
19
+ python -m pip install --upgrade pip
20
+ pip install setuptools wheel
21
+ - name : Build package
22
+ run : |
23
+ python setup.py sdist bdist_wheel
24
+ - name : Publish
25
+
26
+ with :
27
+ user : __token__
28
+ password : ${{ secrets.pypi_token }}
Original file line number Diff line number Diff line change 6
6
"codeRepository" : " https://github.com/caltechlibrary/caltechdata_api" ,
7
7
"issueTracker" : " https://github.com/caltechlibrary/caltechdata_api/issues" ,
8
8
"license" : " https://data.caltech.edu/license" ,
9
- "version" : " 1.4.5 " ,
9
+ "version" : " 1.5.0 " ,
10
10
"author" : [
11
11
{
12
12
"@type" : " Person" ,
21
21
}],
22
22
"developmentStatus" : " active" ,
23
23
"downloadUrl" :
24
- " https://github.com/caltechlibrary/caltechdata_api/archive/1.4.3 .zip" ,
24
+ " https://github.com/caltechlibrary/caltechdata_api/archive/1.5.0 .zip" ,
25
25
"keywords" : [
26
26
" GitHub" ,
27
27
" metadata" ,
You can’t perform that action at this time.
0 commit comments