We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c78f4e commit e9a72e8Copy full SHA for e9a72e8
.github/workflows/ci.yaml
@@ -106,6 +106,10 @@ jobs:
106
DOCKER_REPO: tecnativa/doodba
107
GHCR_HOST: ghcr.io
108
steps:
109
+ - name: Clean Docker system before build
110
+ run: |
111
+ docker system prune -af || true
112
+ docker builder prune -af || true
113
# Set build date as env variable to be used later
114
- name: Set build date
115
run: echo "BUILD_DATE=$(date '+%Y-%m-%dT%H:%M:%S.%N%:z')" >> $GITHUB_ENV
@@ -168,3 +172,7 @@ jobs:
168
172
VCS_REF=${{ github.sha }}
169
173
BUILD_DATE=${{ env.BUILD_DATE }}
170
174
ODOO_VERSION=${{ matrix.odoo_version }}
175
+ - name: Clean Docker system after build
176
177
178
0 commit comments