Skip to content

Commit

Permalink
Merge pull request #8 from DetNordjyskeMediehus/releases/release-1.0.0
Browse files Browse the repository at this point in the history
Releases/release 1.0.0
  • Loading branch information
dnmh-admin committed May 3, 2023
2 parents 548eca0 + 9e57895 commit 7b80df6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --configuration Release --no-build --verbosity normal
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ jobs:
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal
run: dotnet test --configuration Release --no-build --verbosity normal
- name: Pack
run: dotnet pack --verbosity detailed
run: dotnet pack --configuration Release
- name: Release
run: dotnet nuget push ./src/bin/Release/Dnmh.Security.ApiKeyAuthentication.*.nupkg --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json
run: dotnet nuget push ./Source/bin/Release/Dnmh.Security.ApiKeyAuthentication.*.nupkg --api-key "${{ secrets.NUGET_API_KEY }}" --source https://api.nuget.org/v3/index.json

0 comments on commit 7b80df6

Please sign in to comment.