Added support to BKHD
v128
#49
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 | |
on: | |
push: | |
branches: [ "test" ] | |
paths-ignore: | |
- '**/README.md' | |
- '.github/**' | |
workflow_dispatch: | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore the application | |
run: dotnet restore | |
- name: Build CLI for Windows | |
run: dotnet publish Audio.CLI -c Release -r win-x64 | |
- name: Build GUI for Windows | |
run: dotnet publish Audio.GUI.Desktop -c Release -r win-x64 | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: net8.0_windows-${{ github.sha }} | |
path: | | |
Audio.CLI/bin/Release/net8.0/win-x64/publish | |
Audio.GUI.Desktop/bin/Release/net8.0/win-x64/publish | |
linux: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore the application | |
run: dotnet restore | |
- name: Build CLI for Linux | |
run: dotnet publish Audio.CLI -c Release -r linux-x64 | |
- name: Build GUI for Linux | |
run: dotnet publish Audio.GUI.Desktop -c Release -r linux-x64 | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: net8.0_linux-${{ github.sha }} | |
path: | | |
Audio.CLI/bin/Release/net8.0/linux-x64/publish | |
Audio.GUI.Desktop/bin/Release/net8.0/linux-x64/publish | |
osx: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install .NET Core | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 8.0.x | |
- name: Restore the application | |
run: dotnet restore | |
- name: Build CLI for Mac | |
run: dotnet publish Audio.CLI -c Release -r osx-x64 | |
- name: Build GUI for Mac | |
run: dotnet publish Audio.GUI.Desktop -c Release -r osx-x64 | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: net8.0_osx-${{ github.sha }} | |
path: | | |
Audio.CLI/bin/Release/net8.0/osx-x64/publish | |
Audio.GUI.Desktop/bin/Release/net8.0/osx-x64/publish |