File tree Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Expand file tree Collapse file tree 1 file changed +25
-1
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
windows-build :
10
- name : ' Windows'
10
+ name : ' Windows Latest '
11
11
runs-on : windows-latest
12
12
if : contains(github.event.head_commit.message, '[skip ci]') != true
13
13
steps :
30
30
with :
31
31
name : obs-websocket-http-Windows
32
32
path : dist/obs-websocket-http*
33
+ linux-build :
34
+ name : ' Ubuntu Latest'
35
+ runs-on : ubuntu-latest
36
+ if : contains(github.event.head_commit.message, '[skip ci]') != true
37
+ steps :
38
+ - name : Checkout Repository
39
+ uses : actions/checkout@v2
40
+
41
+ - name : Install Python 3.9
42
+ uses : actions/setup-python@v2
43
+ with :
44
+ python-version : 3.9
45
+
46
+ - name : Install Python Prerequisites
47
+ run : pip install -r requirements.txt pyinstaller
48
+
49
+ - name : Run PyInstaller
50
+ run : pyinstaller main.py --onefile --name obs-websocket-http --icon data/irltk_icon.ico
51
+
52
+ - name : Upload Artifacts
53
+ uses : actions/upload-artifact@v2
54
+ with :
55
+ name : obs-websocket-http-Ubuntu
56
+ path : dist/obs-websocket-http*
You can’t perform that action at this time.
0 commit comments