Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix BuildMark version capture to use --global flag
Co-authored-by: Malcolmnixon <1863707+Malcolmnixon@users.noreply.github.com>
  • Loading branch information
Copilot and Malcolmnixon committed Feb 15, 2026
commit 3a09c6fcb1e67ad64617873a3e37ea80b6ba0d33
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ jobs:
OS_SHORT=$(echo "${{ matrix.os }}" | sed 's/windows-latest/win/;s/ubuntu-latest/ubuntu/')
DOTNET_SHORT=$(echo "${{ matrix.dotnet-version }}" | sed 's/\.x$//')
JOB_ID="int-${OS_SHORT}-${DOTNET_SHORT}"
dotnet versionmark --capture --job-id "${JOB_ID}" -- dotnet git versionmark
dotnet versionmark --capture --job-id "${JOB_ID}" -- dotnet git buildmark versionmark
echo "✓ Tool versions captured"

- name: Upload version capture
Expand Down
5 changes: 3 additions & 2 deletions .versionmark.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ tools:
command: dotnet tool list
regex: '(?i)demaconsulting\.reqstream\s+(?<version>\d+\.\d+\.\d+)'

# BuildMark (DemaConsulting.BuildMark from dotnet tool list)
# BuildMark (DemaConsulting.BuildMark from dotnet tool list --global)
# Note: BuildMark is installed globally in integration-test and build-docs jobs
buildmark:
Comment thread
Malcolmnixon marked this conversation as resolved.
command: dotnet tool list
command: dotnet tool list --global
regex: '(?i)demaconsulting\.buildmark\s+(?<version>\d+\.\d+\.\d+)'

# VersionMark (DemaConsulting.VersionMark from dotnet tool list)
Expand Down