We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7f9279 commit cd1b06dCopy full SHA for cd1b06d
.github/workflows/build.yml
@@ -103,11 +103,7 @@ jobs:
103
VERSION="${VERSION//v}"
104
echo Clean Version: $VERSION
105
dotnet pack -v normal -c Release --include-symbols --include-source -p:PackageVersion=$VERSION -o nupkg SqlKata.Execution/SqlKata.Execution.csproj
106
- - name: Push to GitHub Feed (QueryBuilder)
107
- run: |
108
- for f in ./nupkg/*.nupkg
109
- do
110
- curl -X PUT -u "$GITHUB_USER:$GITHUB_TOKEN" -F package=@$f $GITHUB_FEED
111
- done
+ - name: Push to GitHub Feed
+ run: dotnet nuget push ./nupkg/*.nupkg --source $GITHUB_FEED --skip-duplicate --api-key $GITHUB_TOKEN
112
- name: Push to NuGet Feed
113
run: dotnet nuget push ./nupkg/*.nupkg --source $NUGET_FEED --skip-duplicate --api-key $NUGET_KEY
0 commit comments