diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4a1d847..7cec3e5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,4 +1,4 @@ -name: Build Executable +name: Build Executable for Multiple Platforms on: [push] @@ -30,10 +30,10 @@ jobs: run: | pyinstaller --onefile --windowed SortingApp.py - - name: Build for CentOS using Docker on Ubuntu + - name: Build for Red Hat using Docker on Ubuntu if: matrix.os == 'ubuntu-latest' run: | - docker run --rm -v ${{ github.workspace }}:/src -w /src centos:8 \ + docker run --rm -v ${{ github.workspace }}:/src -w /src almalinux:8 \ bash -c "yum install -y python3 python3-devel gcc && \ python3 -m pip install pyinstaller && \ pyinstaller --onefile --windowed SortingApp.py"