We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6e9516 commit 82ea97eCopy full SHA for 82ea97e
.github/workflows/release.yml
@@ -46,7 +46,11 @@ jobs:
46
SQLKATA_MYSQL_DB: ${{ env.DB_MYSQL_DATABASE }}
47
- name: Pack
48
run: dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
49
- - name: Push
50
- run: dotnet nuget push *.${VERSION}.nupkg --source https://nuget.pkg.github.com/sqlkata/index.json --api-key ${GITHUB_TOKEN}
+ - name: Push to Github Packages
+ run: dotnet nuget push *.${VERSION}.nupkg --skip-duplicate --source https://nuget.pkg.github.com/sqlkata/index.json --api-key ${GITHUB_TOKEN}
51
env:
52
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53
+ - name: Push to Nuget
54
+ run: dotnet nuget push *.${VERSION}.nupkg --skip-duplicate --source https://api.nuget.org/v3/index.json --api-key ${NUGET_KEY}
55
+ env:
56
+ NUGET_KEY: ${{ secrets.NUGET_KEY }}
0 commit comments