From 8838e240fbb6116120aef8b98ae516006df17adb Mon Sep 17 00:00:00 2001 From: Paul Sanders Date: Sun, 6 Aug 2023 20:48:34 -0400 Subject: [PATCH] Fix order --- .github/workflows/testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index fd1a0849..47b5393c 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -132,14 +132,14 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Download backend uses: actions/download-artifact@v3 - - name: Load image - run: | - docker load --input /tmp/backend.tar - docker image ls -a with: name: backend path: /tmp retention-days: 1 + - name: Load image + run: | + docker load --input /tmp/backend.tar + docker image ls -a - name: Install just uses: taiki-e/install-action@just - name: Setup node