Working on the workflow.

This commit is contained in:
2025-08-27 02:20:36 +10:00
parent f62e96494d
commit 7f4bdba161
5 changed files with 74 additions and 0 deletions

28
.github/workflows/dotnet.yml vendored Normal file
View File

@@ -0,0 +1,28 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 9.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build -c:Release --no-restore
- name: Pack
run: dotnet pack -c:Release ./src/SVM.Core/SVM.Core.csproj
- name: Publish to NuGet
run: dotnet nuget push **\*.nupkg -s 'https://api.nuget.org/v3/index.json' -k ${{secrets.NUGET_API}}