Skip to content

Commit 6433863

Browse files
committed
fix(nightly): drop redundant compress step — build already produces binpunched .gz
The build script runs binpunch (zeroes unused ICU data) then creates .gz files when CI=true. These are already in the uploaded artifacts, so the separate compress step in publish-nightly was redundant.
1 parent 0201241 commit 6433863

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -235,21 +235,6 @@ jobs:
235235
path: artifacts
236236
merge-multiple: true
237237

238-
- name: Compress binaries
239-
# Build artifacts are raw binaries — compression for stable releases
240-
# happens in Craft during publishing, not during build. GHCR nightly
241-
# needs .gz for efficient OCI layers.
242-
run: |
243-
ls artifacts/
244-
for f in artifacts/sentry-linux-* artifacts/sentry-darwin-*; do
245-
gzip -k "$f"
246-
done
247-
# Windows binary — compress but keep .exe name visible in title
248-
for f in artifacts/sentry-windows-*.exe; do
249-
gzip -k "$f"
250-
done
251-
ls artifacts/*.gz
252-
253238
- name: Install ORAS CLI
254239
run: |
255240
VERSION=1.2.3

0 commit comments

Comments
 (0)