From 9c84d6fa09458aa897d73ea75747a99bb15cfe69 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Germ=C3=A1n=20Mart=C3=ADn?= Date: Sun, 15 Oct 2023 20:06:18 +0200 Subject: [PATCH] Remove cache from workflow --- .github/workflows/docker_build_publish.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/docker_build_publish.yml b/.github/workflows/docker_build_publish.yml index f2b8885..e35e230 100644 --- a/.github/workflows/docker_build_publish.yml +++ b/.github/workflows/docker_build_publish.yml @@ -20,13 +20,13 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - - name: Cache Docker layers - uses: actions/cache@v3 - with: - path: /tmp/.buildx-cache - key: ${{ runner.os }}-buildx-${{ github.sha }} - restore-keys: | - ${{ runner.os }}-buildx- + # - name: Cache Docker layers + # uses: actions/cache@v3 + # with: + # path: /tmp/.buildx-cache + # key: ${{ runner.os }}-buildx-${{ github.sha }} + # restore-keys: | + # ${{ runner.os }}-buildx- - name: Set the version id: get_version @@ -41,8 +41,8 @@ jobs: platforms: linux/amd64 push: true tags: gmag11/metatrader5_vnc:${{ env.VERSION }},gmag11/metatrader5_vnc:latest - cache-from: type=local,src=/tmp/.buildx-cache - cache-to: type=local,dest=/tmp/.buildx-cache + # cache-from: type=local,src=/tmp/.buildx-cache + # cache-to: type=local,dest=/tmp/.buildx-cache - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }}