Skip to content

Commit d58e7bf

Browse files
committed
fix(ci): use musl ripgrep binaries for Linux targets
ripgrep 15.1.0 ships musl Linux binaries instead of gnu. Updated bundle_unix calls to use x86_64-unknown-linux-musl and aarch64-unknown-linux-musl targets.
1 parent f67afbc commit d58e7bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -386,11 +386,11 @@ jobs:
386386
fi
387387
if [ -f "autohand-linux-x64" ]; then
388388
chmod +x autohand-linux-x64
389-
bundle_unix "autohand-linux-x64" "x86_64-unknown-linux-gnu"
389+
bundle_unix "autohand-linux-x64" "x86_64-unknown-linux-musl"
390390
fi
391391
if [ -f "autohand-linux-arm64" ]; then
392392
chmod +x autohand-linux-arm64
393-
bundle_unix "autohand-linux-arm64" "aarch64-unknown-linux-gnu"
393+
bundle_unix "autohand-linux-arm64" "aarch64-unknown-linux-musl"
394394
fi
395395
396396
# Create bundled zip for Windows

0 commit comments

Comments
 (0)