Skip to content

Commit cd1b413

Browse files
committed
fix: add working directory for setup uv action
1 parent c5fbd2c commit cd1b413

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/build_app.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ jobs:
2121
runner: windows-11-arm
2222

2323
steps:
24-
- name: setup uv
25-
uses: astral-sh/setup-uv@v7
26-
with:
27-
python-version: 'cpython-3.14-windows-${{ matrix.arch }}-none'
2824
- name: install OpenSSL via vcpkg (arm64)
2925
if: matrix.arch == 'arm64'
3026
id: vcpkg
@@ -43,6 +39,11 @@ jobs:
4339
with:
4440
fetch-depth: 0
4541
path: ${{ github.workspace }}/repo
42+
- name: setup uv
43+
uses: astral-sh/setup-uv@v7
44+
with:
45+
python-version: 'cpython-3.14-windows-${{ matrix.arch }}-none'
46+
working-directory: ${{ github.workspace }}/repo
4647
- name: Install dependencies
4748
working-directory: ${{ github.workspace }}/repo
4849
run: uv sync --frozen --compile --group build --group test

0 commit comments

Comments
 (0)