-
Notifications
You must be signed in to change notification settings - Fork 237
47 lines (41 loc) · 1.24 KB
/
build.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
name: Build
on:
workflow_dispatch:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
include:
- name: "DUCE-GUI-windows"
mode: "-w"
script: "gui"
- name: "DUCE-CLI-windows"
mode: "-c"
script: "cli"
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
cache: "pip"
- name: Install dependencies and PyInstaller
run: pip install -r requirements.txt pyinstaller -U
- name: Build ${{ matrix.name }}
run: >
pyinstaller -y -F ${{ matrix.mode }} -i "extra/DUCE-LOGO.ico" --clean --name "${{ matrix.name }}"
--add-data "base.py;."
--add-data "colors.py;."
--add-data "default-duce-${{ matrix.script }}-settings.json;."
--add-data "README.md;."
--add-data "LICENSE;."
"${{ matrix.script }}.py"
- name: Upload ${{ matrix.name }}.exe
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.name }}.exe
path: ./dist/${{ matrix.name }}.exe