switch to action v4 #5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build SimpleDDNetAutomapper | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest] | |
python-version: ["3.10", "3.11"] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: 'x64' | |
- name: Install PyQt5 | |
run: pip install -r requirements.txt | |
- name: Build Executable for Linux | |
if: matrix.os == 'ubuntu-latest' | |
run: | | |
pyinstaller -F src/viewer.py | |
mv dist/viewer dist/viewer_linux_${{ matrix.python-version }} | |
- name: Build Executable for Windows | |
if: matrix.os == 'windows-latest' | |
run: | | |
pyinstaller -F src/viewer.py | |
mv dist/viewer.exe dist/viewer_windows${{ matrix.python-version }}.exe | |
- name: Upload Artifacts | |
if: matrix.os == 'ubuntu-latest' || matrix.os == 'windows-latest' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: viewer_artifacts | |
path: dist/ |