From 2014b0e2975f39af524a10e34e439f389b873f21 Mon Sep 17 00:00:00 2001 From: lacerbi Date: Fri, 5 Dec 2025 19:38:33 +0200 Subject: [PATCH] fix(ci): remove DMG maker (fails on GitHub Actions) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove maker-dmg which fails with hdiutil on CI macOS runners - macOS users can use the zip file instead (contains same app bundle) - Bump version to 0.7.17 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Signed-off-by: lacerbi --- .github/workflows/release.yml | 1 - forge.config.js | 6 ------ package-lock.json | 4 ++-- package.json | 2 +- 4 files changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2081bab..414f0a6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -96,7 +96,6 @@ jobs: out/make/**/*.exe out/make/**/*.nupkg out/make/**/*.zip - out/make/**/*.dmg out/make/**/*.deb out/make/**/*.rpm if-no-files-found: error diff --git a/forge.config.js b/forge.config.js index 347169b..c71534e 100644 --- a/forge.config.js +++ b/forge.config.js @@ -54,12 +54,6 @@ module.exports = { name: '@electron-forge/maker-zip', platforms: ['darwin', 'win32'], }, - { - name: '@electron-forge/maker-dmg', - config: { - icon: 'assets/athanor.icns', - }, - }, { name: '@electron-forge/maker-deb', config: { diff --git a/package-lock.json b/package-lock.json index 690c645..2414f55 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "athanor", - "version": "0.7.16", + "version": "0.7.17", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "athanor", - "version": "0.7.16", + "version": "0.7.17", "license": "Apache-2.0", "dependencies": { "@anthropic-ai/sdk": "^0.52.0", diff --git a/package.json b/package.json index cea9d09..b70e090 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "athanor", - "version": "0.7.16", + "version": "0.7.17", "bugs": { "url": "https://github.com/lacerbi/athanor/issues" },