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