Skip to content
This repository was archived by the owner on Apr 20, 2024. It is now read-only.

Commit 85298e6

Browse files
author
Morten Turn Pedersen
authored
Merge pull request #67 from monstarlab-dotnet/develop
3.0.0 release
2 parents fee89f0 + 202ec57 commit 85298e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1633
-1579
lines changed

.github/workflows/publish.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name: Publish to NuGet
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77
paths:
8-
- 'NetCoreEntityFramework/**'
8+
- 'Monstarlab.EntityFramework.Extension/**'
99

1010
jobs:
1111
publish:
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 3.1.403
20+
dotnet-version: 6.0.x
2121

2222
- name: Install dependencies
2323
run: dotnet restore
@@ -27,7 +27,7 @@ jobs:
2727

2828
- name: Generate NuGet package
2929
run: |
30-
cd NetCoreEntityFramework
30+
cd Monstarlab.EntityFramework.Extension
3131
dotnet pack --configuration Release --output out --no-build
3232
3333
- name: Push generated package to NuGet.org

.github/workflows/pullrequest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: .NET Core
33
on:
44
pull_request:
55
branches:
6-
- master
6+
- main
77
- develop
88

99
jobs:
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET Core
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 3.1.403
20+
dotnet-version: 6.0.x
2121

2222
- name: Install dependencies
2323
run: dotnet restore

0 commit comments

Comments
 (0)