Skip to content

Commit a64795e

Browse files
committed
fix: try 4 re-enabling windows ui build automation
Signed-off-by: Nick Mitchell <[email protected]>
1 parent c1450ad commit a64795e

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

.github/workflows/release-ui.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ 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 prep-interpreter-from-scratch-gha
71+
if: matrix.os != 'windows-latest'
72+
run: npm run prep-interpreter-from-scratch
73+
- name: prep interpreter for windows
74+
if: matrix.os == 'windows-latest'
75+
run: npm run prep-interpreter-from-scratch-windows
7276

7377
- name: Install wget for Windows
7478
if: matrix.os == 'windows-latest'

pdl-live-react/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,9 @@
2323
"view": "npm run pdl view",
2424
"prep-interpreter": "if [ ! -d .venv ]; then npm run prep-interpreter-from-scratch; fi",
2525
"prep-interpreter-from-scratch": "python3.12 -mvenv .venv && npm run reprep-interpreter",
26-
"prep-interpreter-from-scratch-gha": "python -mvenv .venv && npm run reprep-interpreter",
26+
"prep-interpreter-from-scratch-windows": "python -mvenv .venv && npm run reprep-interpreter-windows",
2727
"reprep-interpreter": ". .venv/bin/activate && pip install -e .. && pip freeze > .venv/requirements.txt",
28+
"reprep-interpreter-windows": ".venv/bin/Activate.ps1 && pip install -e .. && pip freeze > .venv/requirements.txt",
2829
"start": "npm run prep-interpreter && npm run tauri dev"
2930
},
3031
"dependencies": {

0 commit comments

Comments
 (0)