File tree Expand file tree Collapse file tree 1 file changed +8
-1
lines changed
Expand file tree Collapse file tree 1 file changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -39,10 +39,17 @@ jobs:
3939 } else {
4040 $baseVersion = "0.32.0"
4141 }
42- echo "MINVER_VERSION_OVERRIDE=$baseVersion-octopus-nightly-${{ github.run_number }}" >> $env:GITHUB_ENV
42+ $nightlyVersion = "$baseVersion-octopus-nightly-${{ github.run_number }}"
43+ Write-Host "Setting nightly version to: $nightlyVersion"
44+ "MINVERVERSIONOVERRIDE=$nightlyVersion" >> $env:GITHUB_ENV
4345 shell : pwsh
4446 - name : Build
4547 run : dotnet build LibGit2Sharp.sln --configuration Release
48+ - name : Show version
49+ run : |
50+ $package = Get-ChildItem artifacts/package/*.nupkg | Select-Object -First 1
51+ Write-Host "Built package: $($package.Name)"
52+ shell : pwsh
4653 - name : Upload packages
4754 uses : actions/upload-artifact@v4.3.1
4855 with :
You can’t perform that action at this time.
0 commit comments