Skip to content

Commit 76ab2bc

Browse files
authored
release: include payload only in osx-arm64 tarball (#1458)
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. **Illustration of discrepancy** ```text % tree -L 1 gcm-osx-arm64-2.4.0 gcm-osx-arm64-2.4.0 ├── payload ├── pkg └── symbols 4 directories, 0 files % tree -L 1 gcm-osx-x64-2.4.0 gcm-osx-x64-2.4.0 ├── Atlassian.Bitbucket.dll ├── Avalonia.Base.dll ├── Avalonia.Controls.dll ├── Avalonia.DesignerSupport.dll ├── Avalonia.Desktop.dll ├── Avalonia.Dialogs.dll ├── Avalonia.FreeDesktop.dll ├── Avalonia.Markup.Xaml.dll ... ```
2 parents 3a60ecf + b221b62 commit 76ab2bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,7 @@ jobs:
606606
tar -C macos-osx-x64-artifacts/payload -czf osx-payload-and-symbols/gcm-osx-x64-$version.tar.gz .
607607
tar -C macos-osx-x64-artifacts/symbols -czf osx-payload-and-symbols/gcm-osx-x64-$version-symbols.tar.gz .
608608
609-
tar -C macos-osx-arm64-artifacts -czf osx-payload-and-symbols/gcm-osx-arm64-$version.tar.gz .
609+
tar -C macos-osx-arm64-artifacts/payload -czf osx-payload-and-symbols/gcm-osx-arm64-$version.tar.gz .
610610
tar -C macos-osx-arm64-artifacts/symbols -czf osx-payload-and-symbols/gcm-osx-arm64-$version-symbols.tar.gz .
611611
612612
- name: Archive Windows payload and symbols

0 commit comments

Comments
 (0)