From 8026a8977d38e5927aaf326bda9884bbfc38ce6f Mon Sep 17 00:00:00 2001 From: Jan-Henrik Bruhn Date: Thu, 11 Dec 2025 12:50:38 +0100 Subject: [PATCH] Include RELEASES.json in macOS build assets upload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add RELEASES.json to the release artifacts for macOS builds, which is needed for auto-update functionality. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9304cc..6e5e83b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,7 +68,7 @@ jobs: - name: Upload macOS assets if: matrix.os == 'macos-latest' run: | - for file in out/make/zip/darwin/**/*.zip out/make/*.dmg; do + for file in out/make/zip/darwin/**/*.zip out/make/zip/darwin/**/*RELEASES.json out/make/*.dmg; do gh release upload ${{ needs.draft-release.outputs.tag-name }} "$file" --clobber done env: