From 4437d89445c45d21da36937e0921ab3342d1649c Mon Sep 17 00:00:00 2001 From: Martin Deinhofer Date: Wed, 4 Sep 2024 21:09:24 +0200 Subject: [PATCH] use windows-2019 and specific pyinstaller version --- .github/workflows/pyinstaller_windows.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pyinstaller_windows.yml b/.github/workflows/pyinstaller_windows.yml index 227c693..bc7f0b6 100644 --- a/.github/workflows/pyinstaller_windows.yml +++ b/.github/workflows/pyinstaller_windows.yml @@ -5,7 +5,7 @@ jobs: build: # Windows is currently the only platform this action supports - runs-on: windows-latest + runs-on: windows-2019 steps: @@ -25,7 +25,7 @@ jobs: - name: Install Dependencies run: | pip install -r requirements.txt - pip install pyinstaller + pip install pyinstaller==6.10.0 # Build zip folder with executable using pyinstaller - name: Build zip file @@ -36,4 +36,5 @@ jobs: - name: Upload Artifact uses: actions/upload-artifact@v3 with: + name: gesture-mouse path: dist/gesture-mouse