Skip to content

Commit adc569d

Browse files
committed
Fix build workflow
1 parent 4826a23 commit adc569d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
3030
- name: Build application
3131
run: |
32-
$env:PATH = "C:\hostedtoolcache\windows\python\3.11.9\x86\Scripts;C:\hostedtoolcache\windows\python\3.11.9\x86;$env:PATH"
32+
$env:PATH = "${env:ProgramFiles(x86)}\Python311-32\Scripts;${env:ProgramFiles(x86)}\Python311-32;$env:PATH"
3333
.\build_app.bat
3434
3535
- name: Build installer
@@ -133,7 +133,7 @@ jobs:
133133
134134
- name: Build application
135135
run: |
136-
$env:PATH = "C:\Program Files\Python311-arm64\Scripts;C:\Program Files\Python311-arm64;$env:PATH"
136+
$env:PATH = "${env:ProgramFiles}\Python311-arm64\Scripts;${env:ProgramFiles}\Python311-arm64;$env:PATH"
137137
.\build_app.bat
138138
139139
- name: Build installer

0 commit comments

Comments
 (0)