From ba4807f33fc8f030c18d0d5ddb800ae361a32e0b Mon Sep 17 00:00:00 2001 From: Lee Date: Sun, 17 Mar 2024 00:52:56 +0000 Subject: [PATCH] Update .gitea/workflows/publish.yml --- .gitea/workflows/publish.yml | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml index 3cba59e..1bb5f3f 100644 --- a/.gitea/workflows/publish.yml +++ b/.gitea/workflows/publish.yml @@ -43,13 +43,6 @@ jobs: username: ${{ secrets.REPO_USERNAME }} password: ${{ secrets.REPO_TOKEN }} - - name: Restore Docker Build Cache - uses: actions/cache@v4 - id: build-cache - with: - path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx - - name: Build and Push (Latest) uses: docker/build-push-action@v5 with: @@ -58,11 +51,3 @@ jobs: tags: fascinated/mc-tracker:latest cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache - - - name: Save Docker Build Cache - if: steps.build-cache.outputs.cache-hit != 'true' - run: | - mkdir -p /tmp/.buildx-cache - cp -r /tmp/.buildx-cache/. /tmp/.buildx-cache-new - rm -rf /tmp/.buildx-cache - mv /tmp/.buildx-cache-new /tmp/.buildx-cache