Skip to content

Build (Test)

Build (Test) #2

Workflow file for this run

name: Build (Test)
on:
workflow_dispatch:
inputs:
build_type:
description: Target plugin build environment
required: true
type: choice
default: Release
options:
- Release
- Debug
jobs:
Build:
name: Build ${{ inputs.build_type }} (${{ inputs.os }})
uses: ./.github/workflows/reusable.build.yml
strategy:
fail-fast: true
matrix:
os: [ 'macos-13', 'windows-2022' ]
with:
os: ${{ matrix.os }}
build_type: ${{ inputs.build_type }}
upload_artifacts: ${{ true }}