Skip to content

Commit

Permalink
Merge pull request #169 from MakingSense/fix-github-action-for-delive…
Browse files Browse the repository at this point in the history
…ry-nuget

chore: rename actions from publish to delivery
  • Loading branch information
RodrigoPereyraDiaz authored Nov 10, 2021
2 parents 963e3f6 + 3b4c02a commit 309ac63
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.102
dotnet-version: '5.0.x'
- name: Restore tools
run: dotnet tool restore
- name: Verify code format
run: dotnet dotnet-format --dry-run --check
run: dotnet dotnet-format --check
- name: Build with dotnet
run: dotnet build --configuration Release
- name: Test with dotnet
Expand All @@ -33,6 +33,6 @@ jobs:
name: artifacts
path: ./artifacts
- name: Publish to AppVeyor nuget registry
run: dotnet nuget push **\*.nupkg -Source 'https://ci.appveyor.com/nuget/makingsense-aspnet/api/v2/package' -ApiKey ${{secrets.APPVEYOR_NUGET_API_KEY}}
run: dotnet nuget push ./artifacts/*.nupkg -Source 'https://ci.appveyor.com/nuget/makingsense-aspnet/api/v2/package' -ApiKey ${{secrets.APPVEYOR_NUGET_API_KEY}}
- name: Publish to github
run: dotnet nuget push "./artifacts/MailerQ.${VERSION:1}.nupkg" --source 'github'

0 comments on commit 309ac63

Please sign in to comment.