fix(workflows): rename debug image cache
Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
232ba0a5e7
commit
033e67a82f
|
|
@ -142,10 +142,10 @@ jobs:
|
||||||
- name: Cache Docker layers
|
- name: Cache Docker layers
|
||||||
uses: actions/cache@v4
|
uses: actions/cache@v4
|
||||||
with:
|
with:
|
||||||
path: /tmp/.buildx-cache
|
path: /tmp/.buildx-cache-debug
|
||||||
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
key: ${{ runner.os }}-buildx-debug-${{ github.sha }}
|
||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-buildx-
|
${{ runner.os }}-buildx-debug-
|
||||||
|
|
||||||
- name: Login Docker Hub
|
- name: Login Docker Hub
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
|
|
@ -195,8 +195,8 @@ jobs:
|
||||||
|
|
||||||
- name: Move cache
|
- name: Move cache
|
||||||
run: |
|
run: |
|
||||||
rm -rf /tmp/.buildx-cache
|
rm -rf /tmp/.buildx-cache-debug
|
||||||
mv /tmp/.buildx-cache-new /tmp/.buildx-cache
|
mv /tmp/.buildx-cache-new-debug /tmp/.buildx-cache-debug
|
||||||
|
|
||||||
push_dfinit_image_to_registry:
|
push_dfinit_image_to_registry:
|
||||||
name: Push Dfinit Image
|
name: Push Dfinit Image
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue