Skip to content

Version bumpage

Version bumpage #4

Workflow file for this run

name: Publish to Nuget
on:
push:
branches:
- master # Default release branch
workflow_dispatch:
jobs:
publish:
name: build, pack & publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup dotnet
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.101
- name: Publish
id: publish_nuget
uses: rohith/publish-nuget@v2
with:
PROJECT_FILE_PATH: GoLive.Generator.BlazorInterop/GoLive.Generator.BlazorInterop.csproj
VERSION_FILE_PATH: Directory.Build.props
VERSION_REGEX: ^\s*<Version>(.*)<\/Version>\s*$
NUGET_KEY: ${{secrets.NUGET_KEY}}
INCLUDE_SYMBOLS: false