From 118198605fab990162d93692d1b0f8582e9469ab Mon Sep 17 00:00:00 2001 From: Willem Melching Date: Mon, 3 Feb 2020 14:12:35 -0800 Subject: [PATCH] Use full name for docker caching --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 17f9b24d08..5cac8adc0c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -17,9 +17,9 @@ jobs: git submodule update --init - run: | docker pull $(grep -ioP '(?<=^from)\s+\S+' Dockerfile.openpilot) || true - docker pull commaai/openpilot:latest || true + docker pull docker.io/commaai/openpilot:latest || true - docker build --cache-from commaai/openpilot:latest -t tmppilot -f Dockerfile.openpilot . + docker build --cache-from docker.io/commaai/openpilot:latest -t tmppilot -f Dockerfile.openpilot . docker save tmppilot:latest | gzip > tmppilot.tar.gz - uses: actions/upload-artifact@v1 with: