From 17db21ca759b6bdb5a9e9ba977db5e2b662f1d8c Mon Sep 17 00:00:00 2001 From: Benjamin Labrecque Date: Fri, 10 Jul 2026 11:07:23 +0200 Subject: [PATCH] chore: cache uv .venv in cicd --- .gitea/workflows/add-new-service.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/add-new-service.yml b/.gitea/workflows/add-new-service.yml index 21df4ee..d0e2982 100644 --- a/.gitea/workflows/add-new-service.yml +++ b/.gitea/workflows/add-new-service.yml @@ -36,9 +36,9 @@ jobs: with: path: .venv # Changes uv.lock will automatically invalidate the cache and rebuild - key: ${{ runner.os }}-uv-venv-${{ hashFiles('cli/uv.lock') }} + key: ${{ runner.os }}-uv-cli-venv-${{ hashFiles('cli/uv.lock') }} restore-keys: | - ${{ runner.os }}-uv-venv- + ${{ runner.os }}-uv-cli-venv- - name: Initialize Virtual Environment from cli/uv.lock run: |