From 6960b235ea50764c85204356dfa827217006c5f3 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Tue, 11 Oct 2022 09:16:51 -0800 Subject: [PATCH] add no-cache --- .github/workflows/partial-publish.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/partial-publish.yaml b/.github/workflows/partial-publish.yaml index db1ed3b..6b9bc94 100644 --- a/.github/workflows/partial-publish.yaml +++ b/.github/workflows/partial-publish.yaml @@ -47,7 +47,7 @@ jobs: - name: build nightly the image if: ${{ inputs.release == false }} run: | - docker build --push \ + docker build --push --no-cache \ --tag ghcr.io/hay-kot/homebox:{{ inputs.tag }} \ --build-arg COMMIT=$(git rev-parse HEAD) \ --build-arg BUILD_TIME=$(date -u +"%Y-%m-%dT%H:%M:%SZ") \ @@ -56,7 +56,7 @@ jobs: - name: build release tagged the image if: ${{ inputs.release == true }} run: | - docker build --push \ + docker build --push --no-cache \ --tag ghcr.io/hay-kot/homebox:nightly \ --tag ghcr.io/hay-kot/homebox:latest \ --tag ghcr.io/hay-kot/homebox:{{ inputs.tag }} \