vulcast-vertical/.github/workflows/build.yml
Vulcast c5b35d8ec8
Some checks are pending
Build Windows DLL / Build for Windows (push) Waiting to run
Add CI build infrastructure from OBS plugin template
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.
2026-06-29 23:08:27 +01:00

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