diff options
| author | 2026-02-10 13:30:33 +0800 | |
|---|---|---|
| committer | 2026-02-10 13:30:33 +0800 | |
| commit | faa6d4352ec18888f38fc0a28fbbc641048db5b1 (patch) | |
| tree | ac622924c4cd621db9a2ff96946372b732b65599 | |
| parent | 21ec63eaaf2ab1cb088f1c1787200a91cce460a5 (diff) | |
| download | DropOut-faa6d4352ec18888f38fc0a28fbbc641048db5b1.tar.gz DropOut-faa6d4352ec18888f38fc0a28fbbc641048db5b1.zip | |
fix(ci): Install pkg-config and libssl-dev in CI workflow
Added installation of pkg-config and libssl-dev for musl target.
| -rw-r--r-- | .github/workflows/semifold-ci.yaml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/semifold-ci.yaml b/.github/workflows/semifold-ci.yaml index 9a91518..4ce6e06 100644 --- a/.github/workflows/semifold-ci.yaml +++ b/.github/workflows/semifold-ci.yaml @@ -72,6 +72,7 @@ jobs: if: matrix.install-musl == true run: | sudo apt-get install -y musl-tools musl-dev + sudo apt-get install pkg-config libssl-dev - name: Install pnpm uses: pnpm/action-setup@v4 |