Fix wrong path in cache

Change base.tar.xz to ./cache/base.tar.xz

Signed-off-by: Bensuperpc <bensuperpc@gmail.com>
This commit is contained in:
Bensuperpc 2021-07-01 18:25:04 +02:00
parent fd0291d794
commit 4463776a2e

View File

@ -26,7 +26,7 @@ jobs:
- name: archive base
run: |
mkdir -p cache
docker save dockcross/base:latest | xz -e9 -T0 > base.tar.xz
docker save dockcross/base:latest | xz -e9 -T0 > ./cache/base.tar.xz
- name: save base
uses: actions/upload-artifact@v2
with:
@ -54,7 +54,7 @@ jobs:
name: cache
path: ./cache
- name: load base
run: xz -d -k < base.tar.xz | docker load
run: xz -d -k < ./cache/base.tar.xz | docker load
- name: build
run: make ${{ matrix.arch_name }}
- name: test