Skip to content

update sk version to 1.0.0-beta6 (#68) #1

update sk version to 1.0.0-beta6 (#68)

update sk version to 1.0.0-beta6 (#68) #1

Workflow file for this run

name: NuGet-Build
on:
workflow_dispatch:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
env:
NUGET_PACKAGES: ${{ github.workspace }}/.nuget/packages
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 6.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Pack
run: dotnet pack --configuration Release --include-symbols --include-source -o nupkgs
- name: Upload Artifact
uses: actions/[email protected]
with:
name: nuget-packages
path: ${{ github.workspace }}/nupkgs/*.nupkg