Release NuGet #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release NuGet | |
on: | |
release: | |
types: [published] | |
workflow_dispatch: | |
inputs: | |
runId: | |
description: "The run id of the GitHub Action Run to publish artifacts from" | |
required: false | |
default: '-1' | |
jobs: | |
nuget-publish: | |
runs-on: windows-latest | |
steps: | |
- name: Download specific artifact | |
if: ${{ github.event.inputs.runId > 0 }} | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build.yml | |
branch: main | |
run_id: ${{ github.event.inputs.runId }} | |
- name: Download latest artifact | |
if: ${{ github.event.inputs.runId == -1 }} | |
uses: dawidd6/action-download-artifact@v2 | |
with: | |
workflow: build.yml | |
branch: main | |
- shell: pwsh | |
name: Publish NuGet Package | |
run: dotnet nuget push **/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json | |
- shell: pwsh | |
name: Publish NuGet Package (GitHub) | |
run: | | |
dotnet nuget add source "https://nuget.pkg.github.com/redth-org/index.json" -n "Github" -u redth-org -p ${{ secrets.GITHUB_TOKEN }} | |
dotnet nuget push **/*.nupkg -s "Github" -n true |