Merge pull request 'bump to 0.1.5' (#2) from dev into main
Some checks failed
/ build (push) Failing after 1m5s

Reviewed-on: #2
This commit was merged in pull request #2.
This commit is contained in:
WorldTeacher
2025-03-16 10:11:01 +00:00
3 changed files with 3 additions and 11 deletions

View File

@@ -1,5 +1,5 @@
[tool.bumpversion]
current_version = "0.1.4"
current_version = "0.1.5"
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
serialize = ["{major}.{minor}.{patch}"]
search = "{current_version}"

View File

@@ -17,15 +17,7 @@ jobs:
run: uv python install
- name: Build package
run: uv build
- name: Debug Secrets for PASSWORD
run: |
if [ -z "${{ secrets.PASSWORD }}" ]; then
echo "PASSWORD secret is not set"
exit 1
else
echo "PASSWORD secret is set"
fi
- name: Publish package
env:
USERNAME: ${{ github.repository_owner }}
run: uv publish --publish-url https://git.theprivateserver.de/api/packages/WorldTeacher/pypi/ -t ${{ secrets.TOKEN }}
run: uv publish --publish-url https://git.theprivateserver.de/api/packages/$USERNAME/pypi/ -t ${{ secrets.TOKEN }}

View File

@@ -1,6 +1,6 @@
[project]
name = "komconfig"
version = "0.1.4"
version = "0.1.5"
description = "A small library providing a config class that provides settings data for the KomSuite"
readme = "README.md"
authors = [{ name = "WorldTeacher", email = "coding_contact@pm.me" }]