From 6f1663f2a9d4ac9fc05d2d86e79568d87df62db8 Mon Sep 17 00:00:00 2001 From: neil Date: Tue, 27 Dec 2022 08:21:49 +0800 Subject: [PATCH] install curl --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1d4a6a..bbd1ab5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -143,6 +143,9 @@ jobs: node-version: 16 cache: 'pnpm' cache-dependency-path: pnpm-lock.yaml + - name: install curl + if: matrix.platform.name == 'linux+x86-64' || matrix.platform.name == 'linux+aarch64' + run: apt update && apt install curl - name: install Rust stable uses: actions-rs/toolchain@v1 with: