Skip to content

Commit

Permalink
Fix variable generation
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlock committed Feb 12, 2025
1 parent 0ab6fd1 commit b335f25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracer/build/_build/Build.VariableGenerations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1264,7 +1264,7 @@ void GenerateWindowsFleetInstalerSmokeTestsMatrix()
var matrix = (
from platform in platforms
from image in runtimeImages
let dockerTag = $"{platform}_{image.RuntimeTag.Replace('.', '_')}"
let dockerTag = $"{image.PublishFramework}_{platform}_{image.RuntimeTag}".Replace('.', '_')
select new
{
dockerTag = dockerTag,
Expand Down

0 comments on commit b335f25

Please sign in to comment.