Skip to content

changelog for v0.16.0-beta006 #17

changelog for v0.16.0-beta006

changelog for v0.16.0-beta006 #17

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
jobs:
release:
strategy:
matrix:
dotnet: [8.0.100]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.head_ref }}
- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore tools
run: dotnet tool restore
- name: NuGet restore
run: dotnet restore Fornax.sln
- name: build and push packages
run: dotnet run Push
env:
nuget-key: ${{ secrets.NUGET_KEY }}
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
path: out
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: out/*.nupkg
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true