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