Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/backend-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/frontend-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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: |
Expand Down
Loading