We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8297d1 commit d17755aCopy full SHA for d17755a
.github/workflows/build.yml
@@ -14,14 +14,15 @@ jobs:
14
- uses: actions/checkout@v4
15
with:
16
ref: ${{ github.ref }}
17
- - name: Build
18
- run: sh ./bundledApps/MAKEFILE.sh -q
19
- - name: Create venv and install screenshot utility
+ - name: Create venv to isolate Python dependencies
20
run: |
21
python3 -m venv wailvenv
22
source wailvenv/bin/activate
23
- python3 -m pip install screenshot
24
echo PATH=$PATH >> $GITHUB_ENV
+ - name: Build
+ run: sh ./bundledApps/MAKEFILE.sh -q
+ - name: Install screenshot utility
25
+ run: python3 -m pip install screenshot
26
- name: Run
27
working-directory: /Applications
28
0 commit comments