fix: ci - 5

This commit is contained in:
darshankabariya 2026-01-14 14:59:42 +05:30
parent 97b466561e
commit c5e206ec86
No known key found for this signature in database
GPG Key ID: 9A92CCD9899F0D22
2 changed files with 10 additions and 1 deletions

View File

@ -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:

View File

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