From ad98794ba58ad7b7dae941391f5a8b9ba45a9474 Mon Sep 17 00:00:00 2001 From: pdelboca Date: Fri, 17 Jan 2025 12:24:48 +0100 Subject: [PATCH] Install PyInstaller and give execution access --- .github/workflows/create-dmg.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/create-dmg.yaml b/.github/workflows/create-dmg.yaml index 9adf6e3d..e419e4b3 100644 --- a/.github/workflows/create-dmg.yaml +++ b/.github/workflows/create-dmg.yaml @@ -14,6 +14,7 @@ jobs: - name: Install Dependencies run: | pip3 install -r requirements.txt + pip3 install pyinstaller==6.11.1 brew install create-dmg - name: Build and notarize the dmg file env: @@ -23,6 +24,7 @@ jobs: APPLE_ID: ${{ secrets.MAC_APPLE_ID }} APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.MAC_APP_SPECIFIC_PASSWORD }} run: | + chmod +x create-dmg.sh ./create-dmg.sh - name: Archive build artifacts uses: actions/upload-artifact@v4