Adding Windows support #28
Workflow file for this run
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 and Release | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # Triggert auf Tags wie v1.0.0, v1.0.1, etc. | |
permissions: | |
contents: write | |
jobs: | |
build-macos: | |
runs-on: macos-latest | |
outputs: | |
release_url: ${{ steps.create_release.outputs.upload_url }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install Dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Run Build Script for macOS | |
run: python build_script_macos.py # Führt das macOS-Build-Skript aus | |
- name: Zip the .app file | |
run: | | |
cd dist | |
zip -r Mastermind-mac.zip Mastermind.app | |
- name: Create Release (macOS) | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload macOS Build Artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: dist/Mastermind-mac.zip | |
asset_name: Mastermind-mac.zip | |
asset_content_type: application/zip | |
build-windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.11' | |
- name: Install Dependencies | |
run: python -m pip install -r requirements.txt | |
- name: Run Build Script for Windows | |
run: | | |
python build_script_windows.py # Führt das Windows-Build-Skript aus | |
- name: List Files in dist | |
run: | | |
cd dist | |
dir # Auf Windows verwendet, um den Inhalt des Verzeichnisses aufzulisten | |
- name: Zip the .exe file | |
run: | | |
cd dist | |
powershell Compress-Archive -Path Mastermind -DestinationPath Mastermind-win.zip | |
create-release: | |
runs-on: ubuntu-latest | |
needs: [build-macos, build-windows] | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload macOS Build Artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: dist/Mastermind-mac.zip | |
asset_name: Mastermind-mac.zip | |
asset_content_type: application/zip | |
- name: Upload Windows Build Artifact | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: dist/Mastermind-win.zip | |
asset_name: Mastermind-win.zip | |
asset_content_type: application/zip |