From 54e6a43460e678b2642b6c616156381cec4ac7fa Mon Sep 17 00:00:00 2001
From: Mattk70 <61826357+Mattk70@users.noreply.github.com>
Date: Wed, 13 Nov 2024 13:16:40 +0000
Subject: [PATCH] Update check-installation.yml

Python 3.11, go linux
---
 .github/workflows/check-installation.yml | 13 +++++--------
 1 file changed, 5 insertions(+), 8 deletions(-)

diff --git a/.github/workflows/check-installation.yml b/.github/workflows/check-installation.yml
index bd50d52..ebbb716 100644
--- a/.github/workflows/check-installation.yml
+++ b/.github/workflows/check-installation.yml
@@ -6,7 +6,7 @@ jobs:
     runs-on: ${{ matrix.os }}
     strategy:
       matrix:
-        os: [windows-latest, macos-latest] #, ubuntu-latest] 
+        os: [windows-latest, macos-latest, ubuntu-latest] 
     env: 
       GH_TOKEN: ${{ secrets.GH_TOKEN }}
     steps:
@@ -28,11 +28,8 @@ jobs:
       - name: Set up Python 3.9
         uses: actions/setup-python@v4
         with:
-          python-version: '3.9'
-      - name: Install Python dependencies on macOS
-        if: runner.os == 'macOS'
-        run: brew install python@3.9
-        
+          python-version: '3.11'
+       
       - name: Install dependencies
         run: |
           npm install
@@ -58,9 +55,9 @@ jobs:
           if [[ "$RUNNER_OS" == "Windows" ]]; then
             FILENAME="chirpity Setup $VERSION.exe"
           elif [[ "$RUNNER_OS" == "macOS" ]]; then
-            FILENAME="chirpity Setup $VERSION.pkg"
+            FILENAME="chirpity-$VERSION.pkg"
           else
-            FILENAME="chirpity Setup $VERSION.AppImage"
+            FILENAME="chirpity-$VERSION.AppImage"
           fi
           # Check if the file exists
           if [ -f "./dist/$FILENAME" ]; then