From 8848456b60d8031d5ba23d4f5524498ec0845165 Mon Sep 17 00:00:00 2001 From: Mat Kelly Date: Wed, 4 Sep 2024 10:57:37 -0400 Subject: [PATCH] Swap pip3 for virtualenv --- .github/workflows/build.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3ea6be26..9e4844d0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,12 +15,14 @@ jobs: - uses: actions/checkout@v3 with: ref: ${{ github.ref }} - - name: Install environment isolator - run: apt install pipx + - name: Activate virtualenv + run: | + . .venv/bin/activate + echo PATH=$PATH >> $GITHUB_ENV - name: Build run: sh ./bundledApps/MAKEFILE.sh -q - name: Install screenshot utility - run: pipx install screenshot + run: pip3 install screenshot - name: Run working-directory: /Applications run: |