Skip to content

Update

Update #34

Workflow file for this run

name: Release
on:
push:
tags: [ "v*" ]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
fetch-depth: 0
- name: Install .NET Sdk
uses: actions/setup-dotnet@v3
with:
global-json-file: global.json
- name: Do release
run: |
dotnet tool install --global dotnet-releaser
dotnet-releaser run --nuget-token "${{secrets.NUGET_API_KEY}}" --github-token "${{secrets.GITHUB_TOKEN}}" ./dotnet-releaser.toml
- name: Upload build artifacts
uses: actions/upload-artifact@v3
with:
name: Artifacts
path: "artifacts-dotnet-releaser"