Skip to content

v0.0.17

v0.0.17 #19

Workflow file for this run

name: Publish Packages to nuget
on:
release:
types: [created]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
path: ArtNetSharp/bin/Release/**/ArtNetSharp.dll
- name: Publish ArtNetSharp
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: ArtNetSharp/ArtNetSharp.csproj
NUGET_KEY: ${{secrets.NUGET_KEY}}
PACKAGE_NAME: ArtNetSharp