Skip to content
This repository has been archived by the owner on Jul 30, 2024. It is now read-only.

[servicing] NativeLand v1.0.1: .snupkg Storm #2

[servicing] NativeLand v1.0.1: .snupkg Storm

[servicing] NativeLand v1.0.1: .snupkg Storm #2

Workflow file for this run

name: NuGet Gallery Push
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.ref }}
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.0.x'
- name: Solution Compilation
run: dotnet build --configuration Release
- name: Package Publication
run: dotnet nuget push "NativeLand/bin/Release/*.nupkg" --api-key ${{ secrets.NUGET_APIKEY }} --source "nuget.org"