From b9b624edf543e8024e01e550251697d40af7b423 Mon Sep 17 00:00:00 2001 From: Ivan FB Date: Fri, 3 Apr 2026 18:23:23 +0200 Subject: [PATCH] in ci put installed nimble in github path --- .github/workflows/ci.yml | 12 +++++++++--- .github/workflows/container-image.yml | 4 +++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8861ef274..acde7d42e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -72,7 +72,9 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: | + cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + echo "$HOME/.nimble/bin" >> $GITHUB_PATH - name: Cache nimble deps id: cache-nimbledeps @@ -129,7 +131,9 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: | + cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + echo "$HOME/.nimble/bin" >> $GITHUB_PATH - name: Cache nimble deps id: cache-nimbledeps @@ -212,7 +216,9 @@ jobs: repo-token: ${{ secrets.GITHUB_TOKEN }} - name: Install Nimble ${{ env.NIMBLE_VERSION }} - run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: | + cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + echo "$HOME/.nimble/bin" >> $GITHUB_PATH - name: Cache nimble deps id: cache-nimbledeps diff --git a/.github/workflows/container-image.yml b/.github/workflows/container-image.yml index e33f2ec60..8fa3a504a 100644 --- a/.github/workflows/container-image.yml +++ b/.github/workflows/container-image.yml @@ -57,7 +57,9 @@ jobs: - name: Install Nimble ${{ env.NIMBLE_VERSION }} if: ${{ steps.secrets.outcome == 'success' }} - run: cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + run: | + cd /tmp && nimble install "nimble@${{ env.NIMBLE_VERSION }}" -y + echo "$HOME/.nimble/bin" >> $GITHUB_PATH - name: Cache nimble deps if: ${{ steps.secrets.outcome == 'success' }}