Skip to content

Commit be971a3

Browse files
committed
fix: try 2 re-enabling windows ui build automation
Signed-off-by: Nick Mitchell <[email protected]>
1 parent 04ef806 commit be971a3

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/release-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
run: npm ci # change this to npm, pnpm or bun depending on which one you use.
6969

7070
- name: prep interpreter
71-
run: npm run reprep-interpreter
71+
run: npm run prep-interpreter-from-scratch
7272

7373
- name: Install wget for Windows
7474
if: matrix.os == 'windows-latest'

pdl-live-react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"test": "concurrently -n 'quality,playwright' 'npm run test:quality' 'npm run test:ui'",
2222
"pdl": "./src-tauri/target/debug/PDL",
2323
"view": "npm run pdl view",
24-
"prep-interpreter": "if [ ! -d .venv ]; then python3.12 -mvenv .venv && npm run reprep-interpreter; fi",
24+
"prep-interpreter": "if [ ! -d .venv ]; then npm run prep-interpreter-from-scratch; fi",
25+
"prep-interpreter-from-scratch": "python3.12 -mvenv .venv && npm run reprep-interpreter",
2526
"reprep-interpreter": ". .venv/bin/activate && pip install -e .. && pip freeze > .venv/requirements.txt",
2627
"start": "npm run prep-interpreter && npm run tauri dev"
2728
},

0 commit comments

Comments
 (0)