Skip to content

Commit

Permalink
push all nupkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
mgravell committed Nov 17, 2023
1 parent a18f08e commit 5d539db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: dotnet restore Build.csproj

- name: Purge
run: del src/Dapper.*/bin/Release/Dapper.AOT.*.nupkg
run: del src/Dapper.*/bin/Release/Dapper.*.nupkg

- name: Build
run: dotnet build Build.csproj --no-restore -c Release
Expand All @@ -47,6 +47,6 @@ jobs:

- name: Push to MyGet
if: ${{ success() && !github.base_ref }}
run: dotnet nuget push src/Dapper.*/bin/Release/Dapper.AOT.*.nupkg --source https://www.myget.org/F/dapper/api/v2/package --api-key "$env:MYGETAPIKEY"
run: dotnet nuget push src/Dapper.*/bin/Release/Dapper.*.nupkg --source https://www.myget.org/F/dapper/api/v2/package --api-key "$env:MYGETAPIKEY"
env:
MYGETAPIKEY: ${{ secrets.MYGETAPIKEY }}

0 comments on commit 5d539db

Please sign in to comment.