mirror of
https://github.com/creeperlv/SVM.git
synced 2026-01-10 20:39:54 +00:00
29 lines
803 B
YAML
29 lines
803 B
YAML
# 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 ./src/SVM.Core/SVM.Core.csproj
|
|
- name: Build
|
|
run: dotnet build -c:Release --no-restore ./src/SVM.Core/SVM.Core.csproj
|
|
- 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}}
|