We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3744ccc commit 11b0349Copy full SHA for 11b0349
.github/workflows/main.yml
@@ -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
25
+ name: obs-websocket-http-Windows
26
+ path: dist/windows
0 commit comments