From c5e206ec86ccf0cefd395ba600e74fa32c1d5dcc Mon Sep 17 00:00:00 2001 From: darshankabariya Date: Wed, 14 Jan 2026 14:59:42 +0530 Subject: [PATCH] fix: ci - 5 --- .github/workflows/ci.yml | 2 +- .github/workflows/container-image.yml | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 38983395e..8e3a425a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -160,7 +160,7 @@ jobs: build-docker-image: needs: changes if: ${{ needs.changes.outputs.v2 == 'true' || needs.changes.outputs.common == 'true' || needs.changes.outputs.docker == 'true' }} - uses: logos-messaging/logos-messaging-nim/.github/workflows/container-image.yml@10dc3d3eb4b6a3d4313f7b2cc4a85a925e9ce039 + uses: ./.github/workflows/container-image.yml secrets: inherit nwaku-nwaku-interop-tests: diff --git a/.github/workflows/container-image.yml b/.github/workflows/container-image.yml index 2faa174e8..785632ea0 100644 --- a/.github/workflows/container-image.yml +++ b/.github/workflows/container-image.yml @@ -52,6 +52,15 @@ jobs: with: version: binary:2.2.6 + - name: Cache nimble packages + if: ${{ steps.secrets.outcome == 'success' }} + uses: actions/cache@v4 + with: + path: ~/.nimble/pkgs2 + key: ${{ runner.os }}-nimble-${{ hashFiles('nimble.lock') }} + restore-keys: | + ${{ runner.os }}-nimble- + - name: Build binaries id: build if: ${{ steps.secrets.outcome == 'success' }}