Merge pull request #44 from Lombiq/issue/OSOE-875 #27
Workflow file for this run
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: Publish to NuGet | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish-nuget: | |
name: Publish to NuGet | |
uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@dev | |
with: | |
# These warnings are related to the tooling erroneously assuming that a ps1 file must be an (un)install script. In | |
# this repo the ps1 files are assets to be used by the consumer. | |
dotnet-pack-ignore-warning: NU5110 NU5111 | |
secrets: | |
API_KEY: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }} |