|
@@ -24,6 +24,6 @@ jobs:
|
|
|
TAGVERSION=$(git describe --tags --abbrev=0)
|
|
|
echo "TAGVERSION=${TAGVERSION:1}" >> $GITHUB_ENV
|
|
|
- name: Pack with dotnet
|
|
|
- run: dotnet pack ${{ env.SOURCE }} -c Release --include-source --include-symbols -o ./artifacts -p:PackageVersion=${{ env.TAGVERSION }}
|
|
|
+ run: dotnet pack ${{ env.SOURCE }} -c Release --include-source --include-symbols -o ./artifacts -p:Version=${{ env.TAGVERSION }}
|
|
|
- name: Push with dotnet
|
|
|
run: dotnet nuget push ./artifacts/*.nupkg -k ${{ secrets.NUGETAPIKEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
|