From acdde99a5c0b66bfeed48ce3e07e8758582c4e04 Mon Sep 17 00:00:00 2001 From: Jeroen Schweitzer Date: Sat, 13 Dec 2025 21:13:16 +0100 Subject: [PATCH] fix(ci): disable provenance for Gitea registry compatibility MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add provenance: false to docker/build-push-action to fix "received unexpected HTTP status: 200 OK" error when pushing to Gitea container registry. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/build.yml | 1 + CHANGELOG.md | 6 ++++++ README.md | 2 +- pyproject.toml | 2 +- 4 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 6a63fa0..c78a19b 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -22,6 +22,7 @@ jobs: with: context: . push: true + provenance: false tags: | git.schweitz.net/jpmschweitzer/tatlock:latest git.schweitz.net/jpmschweitzer/tatlock:${{ github.ref_name }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bb2b03..c592ef7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.2] - 2025-12-13 + +### Fixed + +- **CI**: Add `provenance: false` to docker/build-push-action to fix Gitea registry push + ## [1.2.1] - 2025-12-13 ### Changed diff --git a/README.md b/README.md index 46089ee..ab5ffaa 100644 --- a/README.md +++ b/README.md @@ -432,7 +432,7 @@ For LLM agent development guidelines and architectural decisions, see [AGENTS.md ## Version -Current version: **1.2.1** - Dependency slimming +Current version: **1.2.2** - CI fix --- diff --git a/pyproject.toml b/pyproject.toml index ec0d27a..660fc52 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "tatlock" -version = "1.2.1" +version = "1.2.2" description = "OpenAI-compatible API with Ollama backend" requires-python = ">=3.12" dependencies = []