Skip to content

Commit

Permalink
Update check-installation.yml
Browse files Browse the repository at this point in the history
Python 3.11, go linux
  • Loading branch information
Mattk70 authored Nov 13, 2024
1 parent 8df6585 commit 54e6a43
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/check-installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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 [email protected]

python-version: '3.11'

- name: Install dependencies
run: |
npm install
Expand All @@ -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
Expand Down

0 comments on commit 54e6a43

Please sign in to comment.