Skip to content

Merge pull request #11 from HerpDerpinstine/dependabot/github_actions… #112

Merge pull request #11 from HerpDerpinstine/dependabot/github_actions…

Merge pull request #11 from HerpDerpinstine/dependabot/github_actions… #112

Workflow file for this run

name: Build bHapticsLib
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET 5
uses: actions/[email protected]
with:
dotnet-version: 5.0.x
- name: Setup .NET 6
uses: actions/[email protected]
with:
dotnet-version: 6.0.x
- name: Restore Dependencies
run: dotnet restore
- name: Build Debug
shell: cmd
run: dotnet build -c Debug
- name: Upload Debug Artifact
uses: actions/upload-artifact@v4
with:
name: bHapticsLib.CI.Debug
path: Output/Debug/
- name: Build Release
shell: cmd
run: dotnet build -c Release
- name: Upload Release Artifact
uses: actions/upload-artifact@v4
with:
name: bHapticsLib.CI.Release
path: Output/Release/