Skip to content

Commit d673bda

Browse files
committed
Fix publication action
1 parent 54867eb commit d673bda

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
run: dotnet build --configuration Release --no-restore /p:Version=$VERSION
4242

4343
- name: Test
44-
run: dotnet test --no-build --verbosity normal
44+
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal
4545

4646
- name: Pack nuget packages
47-
run: dotnet pack --output nupkgs --no-restore --no-build /p:PackageVersion=$VERSION
47+
run: dotnet pack --configuration Release --no-restore --no-build --output nupkgs /p:PackageVersion=$VERSION
4848

4949
- name: Upload nuget package
5050
if: github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v')

0 commit comments

Comments
 (0)