Clean Flutter build cache before CI build
All checks were successful
Build and deploy Flutter Web / build (push) Successful in 9m44s

This commit is contained in:
Ruslan Bakiev
2026-05-08 17:51:20 +07:00
parent 5b7b5771a1
commit bccda6e9b6

View File

@@ -22,6 +22,13 @@ jobs:
auth="$(printf '%s:%s' "${{ secrets.REGISTRY_USERNAME }}" "${{ secrets.REGISTRY_TOKEN }}" | base64 | tr -d '\n')"
printf '{"auths":{"gitea.dsrptlab.com":{"auth":"%s"}}}\n' "$auth" > ~/.docker/config.json
- name: Free Docker build space
run: |
set -euo pipefail
docker buildx prune --all --force || true
docker builder prune --all --force || true
docker system prune --all --force || true
- name: Build and push image
run: |
set -euo pipefail