Skip to content

Update release notes #161

Update release notes

Update release notes #161

Workflow file for this run

name: CI
on:
push:
branches:
- trunk
- feature/*
- develop/github/*
- release/*
pull_request:
branches:
- trunk
jobs:
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.401'
- name: Tools
run: dotnet tool restore
- name: Setup
run: dotnet run --project .\Build\Setup.fsproj
- name: Build
env:
NUGET_API_TOKEN: ${{ secrets.NUGET_API_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: dotnet run --project .\Build\Build.fsproj
- uses: actions/upload-artifact@v4
with:
name: nupkgs
path: _Packagin*/*.nupkg
- uses: actions/upload-artifact@v4
if: failure()
with:
name: reports.windows
path: _Reports
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: '7.0.401'
- name: Tools
run: dotnet tool restore
- name: Setup
run: dotnet run --project ./Build/Setup.fsproj
- name: Build
run: dotnet run --project ./Build/Build.fsproj
- uses: actions/upload-artifact@v4
if: failure()
with:
name: reports.linux
path: _Reports