Skip to content

fix: build

fix: build #29

Workflow file for this run

name: eQuantic Core Data EntityFramework
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
dotnet-quality: 'preview'
- name: Build eQuantic.Core.Data.EntityFramework Library
run: dotnet build ./src/eQuantic.Core.Data.EntityFramework.csproj --configuration Release
- name: Build eQuantic.Core.Data.EntityFramework Library
run: dotnet build ./src/eQuantic.Core.Data.EntityFramework.Net6.csproj --configuration Release
- name: Build eQuantic.Core.Data.EntityFramework Library
run: dotnet build ./src/eQuantic.Core.Data.EntityFramework.Net7.csproj --configuration Release
- name: Build eQuantic.Core.Data.EntityFramework Library
run: dotnet build ./src/eQuantic.Core.Data.EntityFramework.Net8.csproj --configuration Release
- name: Push package into Nuget.org
run: dotnet nuget push **/*.nupkg --skip-duplicate -k ${{secrets.nuget_key}} -s https://api.nuget.org/v3/index.json