File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 2929 ver_suf = '';
3030 }
3131 core.exportVariable('VER_STR', ver_str);
32- core.exportVariable('VER_NUM', vs.formatVersion(`${majmin}.$(GitRevCount).$(RunNumber) `));
32+ core.exportVariable('VER_NUM', vs.formatVersion(`${majmin}.$(GitRevCount)`));
3333 core.exportVariable('VER_SUF', ver_suf);
3434
3535 - name : Install dotnet
4747 - name : " dotnet pack: ${{ env.VER_STR }}"
4848 run : dotnet pack Src/RT.CommandLine.csproj --configuration Release -p:InformationalVersion="${{env.VER_STR}}" -p:VersionPrefix=${{env.VER_NUM}} -p:VersionSuffix=${{env.VER_SUF}} -p:FileVersion=${{env.VER_NUM}} -p:AssemblyVersion=${{env.VER_NUM}} -o Publish
4949
50+ - name : " dotnet pack Lingo: ${{ env.VER_STR }}"
51+ run : dotnet pack SrcLingo/RT.CommandLine.Lingo.csproj --configuration Release -p:InformationalVersion="${{env.VER_STR}}" -p:VersionPrefix=${{env.VER_NUM}} -p:VersionSuffix=${{env.VER_SUF}} -p:FileVersion=${{env.VER_NUM}} -p:AssemblyVersion=${{env.VER_NUM}} -o Publish
52+
5053 - name : Push to NuGet
5154 run : dotnet nuget push Publish/*.nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
5255
You can’t perform that action at this time.
0 commit comments