File tree Expand file tree Collapse file tree 2 files changed +27
-1
lines changed
Expand file tree Collapse file tree 2 files changed +27
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish package to PyPI
2+ on :
3+ push :
4+ tags :
5+ - ' v*'
6+ jobs :
7+ build-n-publish :
8+ name : Build and publish package to PyPI
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Check out repository code
12+ uses : actions/checkout@v4
13+
14+ - name : Set up Python
15+ uses : astral-sh/setup-uv@v5
16+ with :
17+ enable-cache : true
18+ python-version : " 3.11"
19+
20+ - name : Build
21+ run : uv build
22+
23+ - name : Publish
24+ env :
25+ PYPI_TOKEN : ${{ secrets.pypi_password }}
26+ run : uv publish --token $PYPI_TOKEN
Original file line number Diff line number Diff line change 11[project ]
22name = " pyobs-brot"
3- version = " 0.0.2 "
3+ version = " 0.0.3 "
44description = " pyobs module for BROTlib telescopes"
55authors = [{
name =
" Tim-Oliver Husser" ,
email =
" [email protected] " }, {
name =
" Lukas Melzig" ,
email =
" [email protected] " }]
66requires-python = " >=3.11"
You can’t perform that action at this time.
0 commit comments