We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1b942f commit a21adb9Copy full SHA for a21adb9
1 file changed
.github/workflows/build.yml
@@ -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