Skip to content
This repository was archived by the owner on Apr 21, 2025. It is now read-only.

Commit 8f41374

Browse files
Use lz4 for compression
1 parent 11d6fce commit 8f41374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release_carton.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@ jobs:
5454
id: create-build
5555
run: |
5656
wasm_tools_dir="swift-wasm-tools-${{ matrix.swift-version }}-ubuntu22.04"
57-
echo "bundle_name=$wasm_tools_dir.tar.gz" | tee -a $GITHUB_OUTPUT
57+
echo "bundle_name=$wasm_tools_dir.tar.lz4" | tee -a $GITHUB_OUTPUT
5858
mkdir -p $wasm_tools_dir
5959
mv carton/.build/release/carton $wasm_tools_dir/carton
6060
mv binaryen/bin/wasm-opt $wasm_tools_dir/wasm-opt
6161
mv wasm-${{ matrix.swift-version }}-RELEASE $wasm_tools_dir/
62-
tar czf $wasm_tools_dir.tar.gz $wasm_tools_dir
62+
tar cf - $wasm_tools_dir | lz4 > $wasm_tools_dir.tar.lz4
6363
6464
- name: Compute release version number
6565
id: compute-version

0 commit comments

Comments
 (0)