Skip to content

Commit 31bb905

Browse files
authored
v0.0.3
version 0.0.3
2 parents 812fe53 + 4d502a6 commit 31bb905

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

.github/workflows/pypi.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pyobs-brot"
3-
version = "0.0.2"
3+
version = "0.0.3"
44
description = "pyobs module for BROTlib telescopes"
55
authors = [{ name = "Tim-Oliver Husser", email = "[email protected]" }, { name = "Lukas Melzig", email = "[email protected]" }]
66
requires-python = ">=3.11"

0 commit comments

Comments
 (0)