2 Commits

Author SHA1 Message Date
13746ee8cc chore: bump version 0.1.3 → 0.1.4
Some checks failed
CI/CD Awesome Pipeline / Test (push) Successful in 37s
CI/CD Awesome Pipeline / Build & Push to Registry (push) Failing after 24s
2025-12-21 12:58:36 +01:00
49f31e492f debug: boring 2025-12-21 12:58:17 +01:00
3 changed files with 4 additions and 5 deletions

View File

@@ -30,13 +30,12 @@ jobs:
name: Build & Push to Registry
runs-on: ubuntu-latest
needs: test
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
if: contains(github.ref, 'refs/tags/v')
steps:
- name: Debug ref
run: |
echo "github.ref = ${{ github.ref }}"
echo "github.ref_type = ${{ github.ref_type }}"
echo "github.ref_name = ${{ github.ref_name }}"
echo "GITHUB_REF = $GITHUB_REF"
- name: Checkout code
uses: actions/checkout@v4

View File

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

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "agent-media"
version = "0.1.3"
version = "0.1.4"
description = "AI agent for managing a local media library"
authors = ["Francwa <francois.hodiaumont@gmail.com>"]
readme = "README.md"