diff --git a/.bumpversion.toml b/.bumpversion.toml index 738dc74..29ac94f 100644 --- a/.bumpversion.toml +++ b/.bumpversion.toml @@ -1,5 +1,5 @@ [tool.bumpversion] -current_version = "0.1.4" +current_version = "0.1.5" parse = "(?P\\d+)\\.(?P\\d+)\\.(?P\\d+)" serialize = ["{major}.{minor}.{patch}"] search = "{current_version}" diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 5fa9f0e..ffd38ec 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -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 }} \ No newline at end of file + run: uv publish --publish-url https://git.theprivateserver.de/api/packages/$USERNAME/pypi/ -t ${{ secrets.TOKEN }} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 28de997..d64113f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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" }]