Some checks are pending
Build Windows DLL / Build for Windows (push) Waiting to run
Added GitHub Actions workflow and build scripts from obsproject/obs-plugintemplate for Windows DLL builds. Push to GitHub and go to Actions tab to build the DLL.
31 lines
651 B
YAML
31 lines
651 B
YAML
name: Build Windows DLL
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build-windows:
|
|
name: Build for Windows
|
|
runs-on: windows-2022
|
|
defaults:
|
|
run:
|
|
shell: pwsh
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
fetch-depth: 0
|
|
|
|
- name: Build Plugin
|
|
uses: ./.github/actions/build-plugin
|
|
with:
|
|
target: x64
|
|
config: Release
|
|
|
|
- name: Upload DLL
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: vulcast-vertical-windows-x64
|
|
path: ${{ github.workspace }}/release/**/vulcast-vertical.dll
|