From 2fe51ae91c5d5e41beb1d754a40037ede6213fc4 Mon Sep 17 00:00:00 2001 From: Jacek Sieka Date: Mon, 11 Dec 2023 09:04:54 +0100 Subject: [PATCH] try downloader --- .github/workflows/ci.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9e536a9..b105a1f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,13 +41,16 @@ jobs: uses: actions/checkout@v3 - name: Fetch nimble - run: | - wget https://github.com/nim-lang/nimble/releases/download/latest/nimble-${{matrix.target.name}}.tar.gz - tar xvf nimble-${{matrix.target.name}}.tar.gz - echo "$PWD" >> $GITHUB_PATH - + uses: robinraju/release-downloader@v1.8 + with: + repository: "nim-lang/nimble" + latest: true + fileName: "nimble-${{matrix.target.name}}.tar.gz" + extract: true - name: Build nph run: | + echo "$PWD" >> $GITHUB_PATH + nimble setup -l nimble build