File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4949 uses : release-drafter/release-drafter@v7
5050 with :
5151 config-name : release-drafter.yml
52- disable_autolabeler : true
52+ dry-run : true
5353 env :
5454 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
5555
8282 run : dotnet test --solution ${{ inputs.solution }} --configuration Release --no-restore
8383
8484 - name : Pack
85- run : dotnet pack ${{ inputs.solution }} --configuration Release --no-build -o artifacts /p:Version=${{ steps.version.outputs.package_version }}
85+ run : dotnet pack ${{ inputs.solution }} --configuration Release --no-build -o artifacts /p:Version=${{ steps.version.outputs.package_version }} /p:InformationalVersion=${{ steps.version.outputs.package_version }}
8686
8787 - name : Publish to NuGet
8888 run : dotnet nuget push artifacts/**/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json --skip-duplicate
Original file line number Diff line number Diff line change 4949
5050 - name : Test
5151 if : inputs.hasTests == true
52- run : dotnet test --solution ${{ inputs.solution }} --configuration Release --no-restore
52+ run : dotnet test --solution ${{ inputs.solution }} --no-build -- configuration Release --no-restore
5353
5454 - name : Pack
5555 run : dotnet pack ${{ inputs.solution }} --configuration Release --no-build -o artifacts /p:Version=${{ steps.version.outputs.package_version }} /p:InformationalVersion=${{ steps.version.outputs.package_version }}
You can’t perform that action at this time.
0 commit comments