From f784c0db87d6b40c002ad62d3358d719817927a9 Mon Sep 17 00:00:00 2001 From: Gareth Bowen Date: Mon, 19 Aug 2024 10:19:14 +0200 Subject: [PATCH] chore(#9097): load docker images for external contributors --- .github/workflows/build.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 372322cb94e..a241c20bd29 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -163,6 +163,17 @@ jobs: node-version: ${{ env.NODE_VERSION }} - uses: actions/checkout@v4 + - name: Download docker images artifacts + uses: actions/download-artifact@v4 + with: + name: cht-images + path: images/ + if: ${{ !env.INTERNAL_CONTRIBUTOR }} + - name: Load docker images + run: ls -1 *.tar | xargs --no-run-if-empty -L 1 docker load -i + working-directory: images/ + if: ${{ !env.INTERNAL_CONTRIBUTOR }} + - run: mkdir tests/logs - run: python -m pip install git+https://github.com/medic/pyxform.git@medic-conf-1.17#egg=pyxform-medic - run: npm install -g cht-conf