Skip to content

Commit f12e5e4

Browse files
Fix the realease pipeline to build UnitTests.Databases.SqlServer.EntityFramework
1 parent b2015b6 commit f12e5e4

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/github-actions-release.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,19 @@ jobs:
2525
with:
2626
dotnet-version: '8.x'
2727

28-
- name: Build
28+
- name: Build UnitTests.Databases.SqlServer
2929
run: dotnet pack
3030
--property:Configuration=Release
3131
--property:VersionPrefix=${{ github.event.inputs.VersionPrefix }}
3232
--property:VersionSuffix=${{ github.event.inputs.VersionSuffix }}
3333
"src/UnitTests.Databases.SqlServer/UnitTests.Databases.SqlServer.csproj"
3434

35+
- name: Build UnitTests.Databases.SqlServer.EntityFramework
36+
run: dotnet pack
37+
--property:Configuration=Release
38+
--property:VersionPrefix=${{ github.event.inputs.VersionPrefix }}
39+
--property:VersionSuffix=${{ github.event.inputs.VersionSuffix }}
40+
"src/UnitTests.Databases.SqlServer.EntityFramework/UnitTests.Databases.SqlServer.EntityFramework.csproj"
41+
3542
- name: Publish the package to nuget.org
3643
run: dotnet nuget push "src/**/bin/Release/*.nupkg" --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json

0 commit comments

Comments
 (0)