-
Notifications
You must be signed in to change notification settings - Fork 0
74 lines (61 loc) · 2.01 KB
/
build_win.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
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_win.zip"
- name: Get the latest release
id: get_release
uses: actions/github-script@v6
with:
script: |
const latestRelease = await github.rest.repos.getLatestRelease({
owner: context.repo.owner,
repo: context.repo.repo,
});
return latestRelease.data.upload_url;
- name: Upload ModManagerGUI artifact to release
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.get_release.outputs.result }}
asset_path: ModManagerGUI\dist\ModManagerGUI_win.zip
asset_name: ModManagerGUI_win.zip
asset_content_type: application/zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}