Skip to content

Removes contact information from README (#61) #71

Removes contact information from README (#61)

Removes contact information from README (#61) #71

Workflow file for this run

name: Build Artifacts
on:
push:
branches:
- develop
- main
workflow_dispatch:
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