3 Commits

Author SHA1 Message Date
9c829b3543 Merge pull request 'fix lil' (#43) from new_notify into main
Reviewed-on: #43
2025-10-15 15:24:18 +00:00
6c1d7a9176 Merge branch 'main' into new_notify 2025-10-15 15:24:10 +00:00
23c6930c11 fix lil 2025-10-15 18:23:35 +03:00

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()