Skip to content

Commit f4e948f

Browse files
committed
fix(ci): minisign
1 parent ef36ab6 commit f4e948f

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/marketplace-build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ env:
2424
CARGO_TERM_COLOR: always
2525
RUST_BACKTRACE: 1
2626
SHERPA_ONNX_VERSION: "1.12.17"
27+
MINISIGN_VERSION: "0.11"
2728
MARKETPLACE_VERSION: ${{ inputs.version }}
2829
RELEASE_TAG: ${{ inputs.release_tag }}
2930
REGISTRY_BASE_URL: ${{ inputs.registry_base_url || format('https://{0}.github.io/streamkit/registry', github.repository_owner) }}
@@ -40,7 +41,13 @@ jobs:
4041
- name: Install system dependencies
4142
run: |
4243
sudo apt-get update
43-
sudo apt-get install -y cmake pkg-config libclang-dev wget libopenblas-dev zstd minisign patchelf python3-yaml
44+
sudo apt-get install -y cmake pkg-config libclang-dev wget libopenblas-dev zstd patchelf python3-yaml
45+
46+
- name: Install minisign
47+
run: |
48+
wget -O /usr/local/bin/minisign https://github.com/jedisct1/minisign/releases/download/${MINISIGN_VERSION}/minisign-linux-x86_64
49+
chmod +x /usr/local/bin/minisign
50+
minisign -h >/dev/null
4451
4552
- name: Install sherpa-onnx
4653
run: |

0 commit comments

Comments
 (0)