diff --git a/.github/workflows/backend-app.yml b/.github/workflows/backend-app.yml index 7415192..cb9a089 100644 --- a/.github/workflows/backend-app.yml +++ b/.github/workflows/backend-app.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest env: - UV_CACHE_DIR: ${{ github.workspace }}/server/.uv_cache + UV_CACHE_DIR: ${{ github.workspace }}/backend/.uv_cache permissions: contents: read @@ -30,10 +30,10 @@ jobs: uses: astral-sh/setup-uv@v6 with: enable-cache: true - cache-dependency-glob: server/uv.lock + cache-dependency-glob: backend/uv.lock activate-environment: true - working-directory: server - cache-local-path: ${{ github.workspace }}/server/.uv_cache + working-directory: backend + cache-local-path: ${{ github.workspace }}/backend/.uv_cache - name: Install dependencies using uv run: | diff --git a/.github/workflows/frontend-app.yml b/.github/workflows/frontend-app.yml index dea33f5..983ce38 100644 --- a/.github/workflows/frontend-app.yml +++ b/.github/workflows/frontend-app.yml @@ -16,7 +16,7 @@ jobs: runs-on: ubuntu-latest env: - UV_CACHE_DIR: ${{ github.workspace }}/server/.uv_cache + UV_CACHE_DIR: ${{ github.workspace }}/frontend/.uv_cache permissions: contents: read @@ -30,10 +30,10 @@ jobs: uses: astral-sh/setup-uv@v6 with: enable-cache: true - cache-dependency-glob: server/uv.lock + cache-dependency-glob: frontend/uv.lock activate-environment: true - working-directory: server - cache-local-path: ${{ github.workspace }}/server/.uv_cache + working-directory: frontend + cache-local-path: ${{ github.workspace }}/frontend/.uv_cache - name: Install dependencies using uv run: |