Skip to content

Commit a68cdbf

Browse files
authored
Merge pull request #2 from codesphere-cloud/main
change workflows
2 parents 689709d + ab2012c commit a68cdbf

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/backend-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
env:
19-
UV_CACHE_DIR: ${{ github.workspace }}/server/.uv_cache
19+
UV_CACHE_DIR: ${{ github.workspace }}/backend/.uv_cache
2020

2121
permissions:
2222
contents: read
@@ -30,10 +30,10 @@ jobs:
3030
uses: astral-sh/setup-uv@v6
3131
with:
3232
enable-cache: true
33-
cache-dependency-glob: server/uv.lock
33+
cache-dependency-glob: backend/uv.lock
3434
activate-environment: true
35-
working-directory: server
36-
cache-local-path: ${{ github.workspace }}/server/.uv_cache
35+
working-directory: backend
36+
cache-local-path: ${{ github.workspace }}/backend/.uv_cache
3737

3838
- name: Install dependencies using uv
3939
run: |

.github/workflows/frontend-app.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717

1818
env:
19-
UV_CACHE_DIR: ${{ github.workspace }}/server/.uv_cache
19+
UV_CACHE_DIR: ${{ github.workspace }}/frontend/.uv_cache
2020

2121
permissions:
2222
contents: read
@@ -30,10 +30,10 @@ jobs:
3030
uses: astral-sh/setup-uv@v6
3131
with:
3232
enable-cache: true
33-
cache-dependency-glob: server/uv.lock
33+
cache-dependency-glob: frontend/uv.lock
3434
activate-environment: true
35-
working-directory: server
36-
cache-local-path: ${{ github.workspace }}/server/.uv_cache
35+
working-directory: frontend
36+
cache-local-path: ${{ github.workspace }}/frontend/.uv_cache
3737

3838
- name: Install dependencies using uv
3939
run: |

0 commit comments

Comments
 (0)