Skip to content

Commit d17755a

Browse files
committed
Isolate py deps BEFORE running makefile
1 parent b8297d1 commit d17755a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,15 @@ jobs:
1414
- uses: actions/checkout@v4
1515
with:
1616
ref: ${{ github.ref }}
17-
- name: Build
18-
run: sh ./bundledApps/MAKEFILE.sh -q
19-
- name: Create venv and install screenshot utility
17+
- name: Create venv to isolate Python dependencies
2018
run: |
2119
python3 -m venv wailvenv
2220
source wailvenv/bin/activate
23-
python3 -m pip install screenshot
2421
echo PATH=$PATH >> $GITHUB_ENV
22+
- name: Build
23+
run: sh ./bundledApps/MAKEFILE.sh -q
24+
- name: Install screenshot utility
25+
run: python3 -m pip install screenshot
2526
- name: Run
2627
working-directory: /Applications
2728
run: |

0 commit comments

Comments
 (0)