We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dd8b1d commit b9e498cCopy full SHA for b9e498c
.github/workflows/ci.yml
@@ -39,10 +39,17 @@ jobs:
39
} else {
40
$baseVersion = "0.32.0"
41
}
42
- echo "MINVER_VERSION_OVERRIDE=$baseVersion-octopus-nightly-${{ github.run_number }}" >> $env:GITHUB_ENV
+ $nightlyVersion = "$baseVersion-octopus-nightly-${{ github.run_number }}"
43
+ Write-Host "Setting nightly version to: $nightlyVersion"
44
+ "MINVERVERSIONOVERRIDE=$nightlyVersion" >> $env:GITHUB_ENV
45
shell: pwsh
46
- name: Build
47
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
53
- name: Upload packages
54
uses: actions/[email protected]
55
with:
0 commit comments