From b221b620eb1567c03f147c408d2b0e55b5bd765a Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Wed, 1 Nov 2023 12:35:02 -0700 Subject: [PATCH] release: include payload only in osx-arm64 tarball Only include the payload (binaries) in the tar.gz archive for osx-arm64. Previously this was including the parent directory that captured the payload, pkg, and symbol subdirectories and children. The osx-x64 tar.gz archive is already correctly only containing the payload. --- .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 82ec3b1b6..67e407c0a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -606,7 +606,7 @@ jobs: tar -C macos-osx-x64-artifacts/payload -czf osx-payload-and-symbols/gcm-osx-x64-$version.tar.gz . tar -C macos-osx-x64-artifacts/symbols -czf osx-payload-and-symbols/gcm-osx-x64-$version-symbols.tar.gz . - tar -C macos-osx-arm64-artifacts -czf osx-payload-and-symbols/gcm-osx-arm64-$version.tar.gz . + tar -C macos-osx-arm64-artifacts/payload -czf osx-payload-and-symbols/gcm-osx-arm64-$version.tar.gz . tar -C macos-osx-arm64-artifacts/symbols -czf osx-payload-and-symbols/gcm-osx-arm64-$version-symbols.tar.gz . - name: Archive Windows payload and symbols