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 e5b229a commit 9328fd4Copy full SHA for 9328fd4
.github/workflows/build-nabla.yml
@@ -59,8 +59,14 @@ jobs:
59
$nscTargetTaggedImage = "ghcr.io/${repo}:${tag}".ToLower()
60
$nscTargetTaggedImageLatest = "ghcr.io/${repo}:nsc-godbolt-latest".ToLower()
61
62
- $shouldPushImage = ("${{ github.ref }}" -eq "refs/heads/master" -and "${{ matrix.vendor }}" -eq "msvc")
+ $shouldPushImage = (
63
+ "${{ github.ref }}" -eq "refs/heads/master" -and
64
+ "${{ matrix.vendor }}" -eq "msvc" -and
65
+ "${{ matrix.config }}" -eq "Release"
66
+ )
67
68
+ Write-Host "::notice::Should push image? $shouldPushImage"
69
+
70
"prefix=$prefix" >> $env:GITHUB_OUTPUT
71
"nscTargetTaggedImage=$nscTargetTaggedImage" >> $env:GITHUB_OUTPUT
72
"nscTargetTaggedImageLatest=$nscTargetTaggedImageLatest" >> $env:GITHUB_OUTPUT
0 commit comments