We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e86863d commit f5ebab3Copy full SHA for f5ebab3
1 file changed
.github/workflows/ci.yml
@@ -34,6 +34,11 @@ jobs:
34
awk '{print $1" /tmp/'"${asset}"'"}' "/tmp/${asset}.sha256" | shasum -a 256 -c -
35
mkdir -p /tmp/compact
36
tar -xJf "/tmp/${asset}" -C /tmp/compact
37
- echo "/tmp/compact" >> "$GITHUB_PATH"
+ compact_bin_dir="/tmp/compact/compact-x86_64-unknown-linux-musl"
38
+ if [ -z "${compact_bin_dir}" ]; then
39
+ echo "compact binary not found after extract"
40
+ exit 1
41
+ fi
42
+ echo "${compact_bin_dir}" >> "$GITHUB_PATH"
43
- name: Build all packages
44
run: yarn build:all
0 commit comments