From db961898bdb052f90c1beb5e76c9934bf2933862 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Fri, 3 Apr 2026 03:39:47 +0200 Subject: [PATCH] install nimble from tmp folder --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7924f3dc5..d8fdd7c66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y - name: Cache nimble deps id: cache-nimbledeps @@ -121,7 +121,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y - name: Cache nimble deps id: cache-nimbledeps @@ -196,7 +196,7 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y - name: Cache nimble deps id: cache-nimbledeps