From 5a6634ee4c4e39f7fbaf78fb3410b24cb3cc4d58 Mon Sep 17 00:00:00 2001 From: lacerbi Date: Fri, 5 Dec 2025 20:17:18 +0200 Subject: [PATCH] fix(ci): handle spaces in artifact filenames MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Use find -print0 | xargs -r -0 to handle "Athanor Setup.exe" space - Add -r flag to prevent empty runs - Bump version to 0.7.18 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Signed-off-by: lacerbi --- .github/workflows/release.yml | 4 +--- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 414f0a6..19bedd7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,6 +123,4 @@ jobs: env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release create ${{ needs.check-tag.outputs.tag }} \ - --generate-notes \ - $(find artifacts -type f) + find artifacts -type f -print0 | xargs -r -0 gh release create ${{ needs.check-tag.outputs.tag }} --generate-notes diff --git a/package-lock.json b/package-lock.json index 2414f55..fc1beb8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "athanor", - "version": "0.7.17", + "version": "0.7.18", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "athanor", - "version": "0.7.17", + "version": "0.7.18", "license": "Apache-2.0", "dependencies": { "@anthropic-ai/sdk": "^0.52.0", diff --git a/package.json b/package.json index b70e090..4723e5d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "athanor", - "version": "0.7.17", + "version": "0.7.18", "bugs": { "url": "https://github.com/lacerbi/athanor/issues" },