From 6673c439322076f12973906e3397e3da59d6c0a8 Mon Sep 17 00:00:00 2001 From: Pakobbix Date: Sat, 13 May 2023 14:58:22 +0200 Subject: [PATCH] Update package.yml Windows Only Test --- .github/workflows/package.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 416a913..1fb9850 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -6,10 +6,7 @@ on: jobs: package: - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest, windows-latest, macos-latest] + runs-on: windows-latest steps: - name: Set up Python uses: actions/setup-python@v2 @@ -26,14 +23,7 @@ jobs: pip install pyinstaller - name: Build and package - run: | - if [ ${{ matrix.os }} == 'ubuntu-latest' ]; then - pyinstaller --noconfirm --onefile --windowed StartUI.py - elif [ ${{ matrix.os }} == 'windows-latest' ]; then - pyinstaller --noconfirm --onefile --windowed StartUI.py - elif [ ${{ matrix.os }} == 'macos-latest' ]; then - pyinstaller --noconfirm --onefile --windowed StartUI.py - fi + run: pyinstaller --noconfirm --onefile --windowed StartUI.py - name: Upload artifacts uses: actions/upload-artifact@v2