File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Publish
2+
3+ on :
4+ release :
5+ types : [published]
6+
7+ jobs :
8+
9+ deploy :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v3
13+ - name : Set up Python
14+ uses : actions/setup-python@v4
15+ with :
16+ python-version : ' 3.7'
17+ - name : Install dependencies
18+ run : |
19+ python -m pip install --upgrade pip
20+ pip install build
21+ - name : Build package
22+ run : python -m build
23+ - name : Publish package
24+ uses : pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
25+ with :
26+ user : __token__
27+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 66
77setup (
88 name = 'saibr' ,
9- version = '0.1.3 ' ,
9+ version = '0.1.4 ' ,
1010 license = "CC BY 4.0" ,
1111 author = 'Tom Bland' ,
1212 author_email = 'tom_bland@hotmail.co.uk' ,
You can’t perform that action at this time.
0 commit comments