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' }}