Skip to content

Bump version

Bump version #90

Workflow file for this run

name: tagged-release
on:
push:
branches: [ master ]
tags:
- v*
pull_request:
branches: [ master ]
tags:
- v*
workflow_dispatch:
jobs:
publish-nuget:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Install dependencies
run: dotnet restore
- name: Test
run: dotnet test
- name: Publish to NuGet
uses: brandedoutcast/publish-nuget@v2
with:
PROJECT_FILE_PATH: RatEye/RatEye.csproj
TAG_COMMIT: true
TAG_FORMAT: v*
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
INCLUDE_SYMBOLS: true