-
-
Notifications
You must be signed in to change notification settings - Fork 162
55 lines (51 loc) · 1.22 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 and Release
on:
pull_request:
branches:
- main
push:
tags:
- 'v*'
jobs:
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Setup Qt environment
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
- name: Build QtPass
run: |
qmake qtpass.pro CONFIG+=static
nmake
copy README.md src\release\README.txt
copy LICENSE src\release\LICENSE.txt
- name: Install Inno Setup
run: choco install innosetup
- name: Create Installer with Inno Setup
run: ISCC.exe qtpass.iss
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: PyQtPass-Windows
path: release
build-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup Qt environment
uses: jurplel/install-qt-action@v3
with:
version: '5.15.2'
- name: Build QtPass
run: |
qmake
make
macdeployqt main/QtPass.app
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: PyQtPass-macOS
path: macdeployqt main/QtPass.app