Skip to content

Commit

Permalink
Isolate py deps BEFORE running makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
machawk1 committed Oct 4, 2024
1 parent b8297d1 commit d17755a
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Build
run: sh ./bundledApps/MAKEFILE.sh -q
- name: Create venv and install screenshot utility
- name: Create venv to isolate Python dependencies
run: |
python3 -m venv wailvenv
source wailvenv/bin/activate
python3 -m pip install screenshot
echo PATH=$PATH >> $GITHUB_ENV
- name: Build
run: sh ./bundledApps/MAKEFILE.sh -q
- name: Install screenshot utility
run: python3 -m pip install screenshot
- name: Run
working-directory: /Applications
run: |
Expand Down

0 comments on commit d17755a

Please sign in to comment.