Skip to content

Support for Entity Framework v8.0 (#126) #45

Support for Entity Framework v8.0 (#126)

Support for Entity Framework v8.0 (#126) #45

Workflow file for this run

# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_release --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------
name: release
on:
push:
tags:
- 'v*'
jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v1
with:
dotnet-version: |
2.1.x
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v2
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.cmd Cover Publish'
run: ./build.cmd Cover Publish
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
NuGetApiKey: ${{ secrets.NUGET_API_KEY }}
- uses: actions/upload-artifact@v2
with:
name: testresults
path: artifacts/testresults
- uses: actions/upload-artifact@v2
with:
name: coverage
path: artifacts/coverage
- uses: actions/upload-artifact@v2
with:
name: reports
path: artifacts/reports
- uses: actions/upload-artifact@v2
with:
name: packages
path: artifacts/packages