File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 13
13
run : echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
14
14
shell : bash
15
15
- run : echo ${{ steps.get_version.outputs.VERSION }}
16
- - run : dotnet pack src/NetMQ/NetMQ.csproj -o . -c Release /p:PackageVersion="${{ steps.get_version.outputs.VERSION }}-pre" /p:Version=${{ steps.get_version.outputs.VERSION }}
16
+ - run : dotnet pack src/NetMQ/NetMQ.csproj -o . -c Release /p:PackageVersion="${{ steps.get_version.outputs.VERSION }}-pre" /p:Version=${{ steps.get_version.outputs.VERSION }} /p:ContinuousIntegrationBuild=true
17
17
- run : dotnet nuget push *.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
18
18
env :
19
19
NUGET_API_KEY : ${{ secrets.NuGetAPIKey }}
Original file line number Diff line number Diff line change 14
14
run : echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
15
15
shell : bash
16
16
- run : echo ${{ steps.get_version.outputs.VERSION }}
17
- - run : dotnet pack src/NetMQ/NetMQ.csproj -o . -c Release /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} /p:Version=${{ steps.get_version.outputs.VERSION }}
17
+ - run : dotnet pack src/NetMQ/NetMQ.csproj -o . -c Release /p:PackageVersion=${{ steps.get_version.outputs.VERSION }} /p:Version=${{ steps.get_version.outputs.VERSION }} /p:ContinuousIntegrationBuild=true
18
18
- run : dotnet nuget push *.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
19
19
env :
20
20
NUGET_API_KEY : ${{ secrets.NuGetAPIKey }}
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ before_build:
9
9
10
10
build_script :
11
11
- dotnet restore src/NetMQ.sln
12
- - dotnet build src/NetMQ.sln /p:Configuration=Release /p:PackageVersion=%APPVEYOR_BUILD_VERSION%-pre /p:Version=%APPVEYOR_BUILD_VERSION% /P :ContinuousIntegrationBuild=true /verbosity:minimal
12
+ - dotnet build src/NetMQ.sln /p:Configuration=Release /p:PackageVersion=%APPVEYOR_BUILD_VERSION%-pre /p:Version=%APPVEYOR_BUILD_VERSION% /p :ContinuousIntegrationBuild=true /verbosity:minimal
13
13
- dotnet pack src/NetMQ/NetMQ.csproj -c Release --no-build /p:PackageVersion=%APPVEYOR_BUILD_VERSION%-pre /p:Version=%APPVEYOR_BUILD_VERSION%
14
14
15
15
test_script :
You can’t perform that action at this time.
0 commit comments