Skip to content

Update package versions in EasyDbMigrator and test projects #93

Update package versions in EasyDbMigrator and test projects

Update package versions in EasyDbMigrator and test projects #93

Workflow file for this run

name: Build (Release version)
on:
push:
branches: [ '**' ]
pull_request:
branches: [ '**' ]
jobs:
BuildRelease:
name: Release build EasyDBMigrator Package
runs-on: windows-latest
timeout-minutes: 15
steps:
- name: Check out the Repository
uses: actions/checkout@v2
- name: Setup .NET Core 6.0.x LTS
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Setup .NET Core 7.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 7.0.x
- name: Setup .NET Core 8.0.x
uses: actions/setup-dotnet@v1
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build Release version
run: dotnet build --configuration Release --no-restore