[Pull Request] Test fixing for new action workflow file that auto rename pr #328
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Plugins | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- ".*/**" | |
- "**/*.md" | |
pull_request: | |
branches: | |
- main | |
paths-ignore: | |
- ".*/**" | |
- "**/*.md" | |
workflow_dispatch: | |
jobs: | |
build-plugins-on-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: "true" | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v3 | |
with: | |
dotnet-version: | | |
6.0.x | |
7.0.x | |
include-prerelease: false | |
- name: Build Plugins | |
working-directory: "KitX Standard/KitX Plugins" | |
run: | | |
cd "TestPlugin.CSharp" | |
dotnet build -c Release | |
cd .. | |
cd "TestPlugin.Winform.Core" | |
dotnet build -c Release | |
cd .. | |
cd "TestPlugin.WPF.Core" | |
dotnet build -c Release | |
cd .. |