File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 46
46
SQLKATA_MYSQL_DB : ${{ env.DB_MYSQL_DATABASE }}
47
47
- name : Pack
48
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}
49
+ - name : Push to Github Packages
50
+ run : dotnet nuget push *.${VERSION}.nupkg --skip-duplicate -- source https://nuget.pkg.github.com/sqlkata/index.json --api-key ${GITHUB_TOKEN}
51
51
env :
52
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 }}
You can’t perform that action at this time.
0 commit comments