Skip to content

Commit a21adb9

Browse files
Add workflow build
1 parent e1b942f commit a21adb9

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: build/python
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
- feat/ogs-beta
8+
## otherwise we only build when new tags are pushed
9+
tags:
10+
- 'v[0-9]+.[0-9]+.[0-9]+'
11+
12+
jobs:
13+
pyinstaller-build:
14+
runs-on: windows-latest
15+
steps:
16+
- name: Create Executable
17+
uses: sayyid5416/pyinstaller@v1
18+
with:
19+
python_ver: '3.6'
20+
spec: 'MLM2Pro-GSPro-Connector.spec'
21+
requirements: 'requirements.txt'
22+
upload_exe_with_name: 'MLM2Pro-OGS'
23+
options: --onefile, --name "MLM2Pro OGS", --windowed,

0 commit comments

Comments
 (0)