Publish NuGet packages #1
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 NuGet packages | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-test: | |
uses: ./.github/workflows/build.yml | |
publish-nuget: | |
name: Publish NuGet package | |
runs-on: ubuntu-latest | |
needs: | |
- build-test | |
strategy: | |
fail-fast: false | |
matrix: | |
# Projects to publish | |
project: [ | |
{ name: "Main", path: "Nodsoft.WowsReplaysUnpack/Nodsoft.WowsReplaysUnpack.csproj" }, | |
{ name: "Core", path: "Nodsoft.WowsReplaysUnpack.Core/Nodsoft.WowsReplaysUnpack.Core.csproj" }, | |
{ name: "ExtendedData", path: "Nodsoft.WowsReplaysUnpack.ExtendedData/Nodsoft.WowsReplaysUnpack.ExtendedData.csproj" } | |
] | |
# Sources to publish to | |
nuget: [ | |
{ name: "NuGet", source: "https://api.nuget.org", keyname: "NUGET_TOKEN" }, | |
{ name: "GitHub Packages", source: "https://nuget.pkg.github.com/Nodsoft", keyname: "GITHUB_TOKEN" } | |
] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | |
- name: Setup dotnet | |
uses: actions/setup-dotnet@v1 | |
with: | |
dotnet-version: 6.0.x | |
- uses: dotnet/nbgv@main | |
id: nbgv | |
- name: Restore dependencies | |
run: dotnet restore | |
- name: Build | |
run: dotnet build | |
- id: is-public-release | |
uses: ASzc/change-string-case-action@v2 | |
with: | |
string: ${{ steps.nbgv.outputs.PublicRelease }} | |
# Publish | |
- name: Build, Pack & Publish ${{ matrix.project.name }} to ${{ matrix.nuget.name }} | |
id: publish_nuget | |
uses: Rebel028/[email protected] | |
with: | |
# Filepath of the project to be packaged, relative to root of repository | |
PROJECT_FILE_PATH: ${{ matrix.project.path }} | |
# NuGet package id, used for version detection & defaults to project name | |
# PACKAGE_NAME: Core | |
# Filepath with version info, relative to root of repository & defaults to PROJECT_FILE_PATH | |
VERSION_FILE_PATH: Directory.Build.props | |
# Regex pattern to extract version info in a capturing group | |
# VERSION_REGEX: ^\s*<Version>(.*)<\/Version>\s*$ | |
# Useful with external providers like Nerdbank.GitVersioning, ignores VERSION_FILE_PATH & VERSION_REGEX | |
VERSION_STATIC: ${{ steps.nbgv.outputs.NuGetPackageVersion }} | |
# Flag to toggle git tagging, enabled by default | |
TAG_COMMIT: ${{ steps.is-public-release.outputs.lowercase }} | |
# Format of the git tag, [*] gets replaced with actual version | |
TAG_FORMAT: v${{ steps.nbgv.outputs.MajorMinorVersion }} | |
# API key to authenticate with NuGet server | |
NUGET_KEY: ${{ secrets[matrix.nuget.keyname] }} | |
# NuGet server uri hosting the packages, defaults to https://api.nuget.org | |
NUGET_SOURCE: ${{ matrix.nuget.source }} | |
# Flag to toggle pushing symbols along with nuget package to the server, disabled by default | |
# INCLUDE_SYMBOLS: false |