From 6e8c6da8fb19d9c4b84dba3cce7cd7aa031b1a16 Mon Sep 17 00:00:00 2001 From: Jan Gleytenhoover Date: Thu, 15 Aug 2024 15:02:55 +0000 Subject: [PATCH] Update .gitea/workflows/node-npm.yaml --- .gitea/workflows/node-npm.yaml | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/node-npm.yaml b/.gitea/workflows/node-npm.yaml index dd9c216..1a0109c 100644 --- a/.gitea/workflows/node-npm.yaml +++ b/.gitea/workflows/node-npm.yaml @@ -35,13 +35,29 @@ jobs: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} + - name: Cache Docker layers + uses: actions/cache@v4 + with: + path: /tmp/.buildx-cache + key: ${{ runner.os }}-buildx-${{ github.sha }} + restore-keys: | + ${{ runner.os }}-buildx- + - name: Build and push uses: https://git.kjan.de/actions/build-push-action@v6 with: - cache-from: type=registry,ref=git.kjan.de/actions/node-npm:buildcache - cache-to: type=registry,ref=git.kjan.de/actions/node-npm:buildcache,mode=max + cache-from: type=local,src=/tmp/.buildx-cache + cache-to: type=local,dest=/tmp/.buildx-cache-new,mode=max context: ./images/actions/node-npm push: ${{ github.ref == 'refs/heads/main' }} tags: | git.kjan.de/actions/node-npm:latest - git.kjan.de/actions/node-npm:${{ gitea.run_number }} + git.kjan.de/actions/node-npm:${{ gitea.run_number }} + + - # Temp fix + # https://github.com/docker/build-push-action/issues/252 + # https://github.com/moby/buildkit/issues/1896 + name: Move cache + run: | + rm -rf /tmp/.buildx-cache + mv /tmp/.buildx-cache-new /tmp/.buildx-cache