Skip to content

Commit e00a536

Browse files
Adding build step to release action
1 parent 5d49d07 commit e00a536

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ jobs:
3131
3.1.x
3232
5.0.x
3333
6.0.x
34+
- name: Install dependencies
35+
run: dotnet restore src/${{ env.PROJECT_NAME }}.sln
36+
- name: Build solution
37+
run: dotnet build src/${{ env.PROJECT_NAME }}.sln -c Release --no-restore
3438
- name: Create Release NuGet package
3539
run: |
3640
arrTag=(${GITHUB_REF//\// })

0 commit comments

Comments
 (0)