Bump version to 0.2.0
#4
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: | |
- 'releases/*' | |
env: | |
CONFIGURATION: Release | |
jobs: | |
build: | |
# Sets permissions of the GITHUB_TOKEN to allow release creating | |
permissions: | |
contents: write | |
environment: | |
name: nuget | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup necessary dotnet SDKs | |
uses: actions/setup-dotnet@v3 | |
with: | |
global-json-file: global.json | |
dotnet-version: | | |
8.x | |
- name: Publish to NuGet | |
env: | |
NUGET_TOKEN: ${{ secrets.NUGET_TOKEN }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
FAKE_DETAILED_ERRORS: true | |
ENABLE_COVERAGE: false # AltCover doesn't work with Release builds, reports lower coverage than actual | |
run: | | |
chmod +x ./build.sh | |
./build.sh Publish |