Skip to content

Bump version to 2.4. #65

Bump version to 2.4.

Bump version to 2.4. #65

Workflow file for this run

name: ModelCompiler .NET Tool build
on:
push:
branches: [ master, nuget* ]
pull_request:
branches: [ master ]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
PUBLISHNUGET: false
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
submodules: true
- name: Set up .NET 8
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore "ModelCompiler Solution.sln"
- name: Build
run: dotnet build --no-restore --configuration Docker "ModelCompiler Solution.sln"