From dfd654cf36aa5694672e5672a089022713545f9a Mon Sep 17 00:00:00 2001 From: John MacFarlane Date: Fri, 28 Aug 2026 15:10:48 -0700 Subject: [PATCH] release candidate action: create proper .tar.gz for macos. Previously this happened automatically, but now we get a zip file with no containing directory? --- .github/workflows/release-candidate.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 10f2f480a..727047206 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -137,9 +137,10 @@ jobs: - name: Create release run: | sh macos/make_macos_release.sh + tar cvzf macos-x86_64.tar.gz macos-x86_64 - uses: actions/upload-artifact@v7 with: - name: macos-x86_64 - path: macos-x86_64 + name: macos-x86_64.tar.gz + path: macos-x86_64.tar.gz