File tree Expand file tree Collapse file tree 1 file changed +17
-16
lines changed Expand file tree Collapse file tree 1 file changed +17
-16
lines changed Original file line number Diff line number Diff line change 6
6
- master
7
7
8
8
jobs :
9
- windows- build :
10
- name : ' Windows 32/64-bit '
11
- runs-on : ubuntu-latest
12
- if : contains(github.event.head_commit.message, '[skip ci]') != true
13
- steps :
14
- - name : Checkout Repository
15
- uses : actions/checkout@v2
9
+ build :
10
+ name : Multiplatform Build (${{ matrix.os }})
11
+ runs-on : ${{ matrix.os }}
12
+ strategy :
13
+ fail-fast : false
14
+ matrix :
15
+ os : ['windows-latest', 'ubuntu-latest, 'macos-latest']
16
16
17
- - name : Package
18
- uses : JackMcKew/pyinstaller-action-windows@main
19
- with :
20
- path : ' .'
17
+ steps :
18
+ - uses : actions/checkout@v2
19
+ - uses : actions/setup-python@v2
20
+ with :
21
+ python-version : 3.9
21
22
22
- - name : Upload Artifacts
23
- uses : actions/upload-artifact@v2
24
- with :
25
- name : obs-websocket-http-Windows
26
- path : dist/windows
23
+ - run : pip install -r requirements.txt pyinstaller
24
+ - run : pyinstaller main.py
25
+ - uses : actions/upload-artifact@v2
26
+ with :
27
+ path : dist/*
You can’t perform that action at this time.
0 commit comments