From 7d14bdaa7aa194f1b26767e07ee3857d30f000ed Mon Sep 17 00:00:00 2001 From: Paul Spooren Date: Tue, 6 Aug 2024 15:14:52 +0200 Subject: [PATCH] ci: don't cache docker builds Signed-off-by: Paul Spooren --- .github/workflows/containers.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/containers.yml b/.github/workflows/containers.yml index b9a9fd1..a80ef59 100644 --- a/.github/workflows/containers.yml +++ b/.github/workflows/containers.yml @@ -221,6 +221,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: + no-cache: true push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} @@ -336,6 +337,7 @@ jobs: - name: Build and push uses: docker/build-push-action@v6 with: + no-cache: true push: ${{ github.event_name != 'pull_request' }} tags: | ${{ steps.meta_ref.outputs.tags }} @@ -436,6 +438,7 @@ jobs: id: build uses: docker/build-push-action@v6 with: + no-cache: true push: false tags: ${{ steps.meta.outputs.tags }} load: true @@ -450,6 +453,7 @@ jobs: if: github.event_name != 'pull_request' uses: docker/build-push-action@v6 with: + no-cache: true push: true tags: ${{ steps.meta.outputs.tags }} build-args: ${{ steps.build_args.outputs.args }}