mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-23 00:54:26 +01:00
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:
parent
fd0291d794
commit
4463776a2e
4
.github/workflows/main.yml
vendored
4
.github/workflows/main.yml
vendored
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user