Skip to content

Release 0.1.0-beta

Release 0.1.0-beta #1

name: 🍿 On Release Published
run-name: Release ${{github.ref_name}}
on:
workflow_dispatch:
release:
types: [published]
jobs:
release-nuget:
runs-on: ubuntu-latest
steps:
- name: Setup .NET Core
uses: actions/[email protected]
with:
dotnet-version: 9.0.100
- name: Download Release artifacts
uses: robinraju/[email protected]
with:
tag: ${{github.ref_name}}
fileName: '*.nupkg'
- name: Publish NuGet
run: dotnet nuget push *.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate