From c03f69a807da35edcf3be7f3844483b23d4ab521 Mon Sep 17 00:00:00 2001 From: Franck Royer Date: Fri, 19 Mar 2021 11:36:33 +1100 Subject: [PATCH] Always checkout submodules and actually get nim-waku head --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8593ffc1ee..679bb6b9cd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,11 +13,13 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + with: + submodules: 'recursive' - name: Get nim-waku HEAD id: nim-waku-head shell: bash - run: echo "::set-output name=ref::$(git rev-parse HEAD)" + run: cd nim-waku && echo "::set-output name=ref::$(git rev-parse HEAD)" - name: Cache nim-waku binary uses: actions/cache@v2