fix(workflows): rename debug image cache

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2025-03-04 23:13:26 +08:00
parent 232ba0a5e7
commit 033e67a82f
No known key found for this signature in database
GPG Key ID: 647A0EE86907F1AF
1 changed files with 5 additions and 5 deletions

View File

@ -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