fix lil #43

Merged
alex merged 2 commits from new_notify into main 2025-10-15 15:24:18 +00:00
Showing only changes of commit 23c6930c11 - Show all commits

View File

@@ -94,11 +94,16 @@ jobs:
cache-to: |
type=local,dest=/cache/buildx-cache-new,mode=max
- name: Move new cache
- name: Move new cache if it exists
if: always()
run: |
rm -rf /cache/buildx-cache
mv /cache/buildx-cache-new /cache/buildx-cache
if [ -d /cache/buildx-cache-new ]; then
echo "Found new buildx cache, replacing old one..."
rm -rf /cache/buildx-cache
mv /cache/buildx-cache-new /cache/buildx-cache
else
echo "No new buildx cache found, keeping old one."
fi
- name: Save Docker layer cache
if: always()