Skip to content

Build Windows

Build Windows #1

Workflow file for this run

name: Build Windows
on:
workflow_dispatch:
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up .NET SDK
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Restore .NET dependencies
run: |
cd ModManagerCore
dotnet restore
- name: Build .NET project
run: |
cd ModManagerCore
dotnet build --configuration Release
- name: Publish .NET project
run: |
cd ModManagerCore
dotnet publish --configuration Release --output ../publish/Core
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install dependencies for Python
run: |
python -m pip install --upgrade pip
pip install PySide6 pyinstaller
- name: Build ModManagerGUI with PyInstaller
run: |
cd ModManagerGUI # Change to the ModManagerGUI directory
dir # List contents to debug if needed
pyinstaller --add-data "../publish/Core;Core" --name ModManagerGUI --windowed main.py
- name: Zip ModManagerGUI directory
run: |
cd ModManagerGUI\dist
powershell -Command "Compress-Archive -Path ModManagerGUI -DestinationPath ModManagerGUI.zip"
- name: Upload ModManagerGUI artifact
uses: actions/upload-artifact@v3
with:
name: ModManagerGUI
path: ModManagerGUI\dist\ModManagerGUI.zip # Path to the zip file