Skip to content

Cleanup project (#28) #31

Cleanup project (#28)

Cleanup project (#28) #31

Workflow file for this run

name: Build Artifacts
on:
push:
branches:
- develop
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Restore
run: dotnet restore
- name: Run tests
run: dotnet test --configuration Release
- name: Publish
run: dotnet publish -c Release -r win-x64 --artifacts-path ./output
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-outputs
path: ./output/publish
if-no-files-found: error