From 1439c3dd1da6cf4731556b84abf100b7b3ebc64f Mon Sep 17 00:00:00 2001 From: Nulo Date: Mon, 15 Jan 2024 15:58:23 -0300 Subject: [PATCH] ci: cachear mejor --- .github/workflows/container.yml | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/.github/workflows/container.yml b/.github/workflows/container.yml index 9a24b7d..36ea84d 100644 --- a/.github/workflows/container.yml +++ b/.github/workflows/container.yml @@ -88,12 +88,32 @@ jobs: uses: actions/cache@v3 with: path: usr/src/app/target - key: usr/src/app/target-${{ hashFiles('Dockerfile') }} + key: usr/src/app/target-${{ hashFiles('Dockerfile.scraper') }} - name: inject usr/src/app/target into docker uses: reproducible-containers/buildkit-cache-dance@v2.1.3 with: cache-source: usr/src/app/target cache-target: /usr/src/app/target + - name: Cache root/.cargo/registry + uses: actions/cache@v3 + with: + path: root/.cargo/registry + key: root/.cargo/registry-${{ hashFiles('Dockerfile.scraper') }} + - name: inject root/.cargo/registry into docker + uses: reproducible-containers/buildkit-cache-dance@v2.1.3 + with: + cache-source: root/.cargo/registry + cache-target: /root/.cargo/registry + - name: Cache root/.cargo/git + uses: actions/cache@v3 + with: + path: root/.cargo/git + key: root/.cargo/git-${{ hashFiles('Dockerfile.scraper') }} + - name: inject root/.cargo/git into docker + uses: reproducible-containers/buildkit-cache-dance@v2.1.3 + with: + cache-source: root/.cargo/git + cache-target: /root/.cargo/git - name: Build and push Docker image uses: docker/build-push-action@v5 with: