Skip to content

Commit 11b0349

Browse files
committed
Add super basic artifact stuff, we'll see if this works
1 parent 3744ccc commit 11b0349

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/main.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 'Build Portable Binaries'
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
windows-build:
10+
name: 'Windows 32/64-bit'
11+
runs-on: [windows-latest]
12+
if: contains(github.event.head_commit.message, '[skip ci]') != true
13+
steps:
14+
- name: Checkout Repository
15+
uses: actions/checkout@v2
16+
17+
- name: Package
18+
uses: JackMcKew/pyinstaller-action-windows@main
19+
with:
20+
path: .
21+
22+
- name: Upload Artifacts
23+
uses: actions/upload-artifact@v2
24+
with:
25+
name: obs-websocket-http-Windows
26+
path: dist/windows

0 commit comments

Comments
 (0)