File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,11 @@ jobs:
5757 shell : pwsh
5858 run : |
5959 $prefix = "run-windows-${{ matrix.tag }}-${{ matrix.vendor }}-${{ matrix.config }}"
60+ $owner = "${{ github.repository_owner }}"
6061 $package = "nabla-shader-compiler-godbolt"
6162 $tag = "build-${{ matrix.vendor }}-${{ matrix.config }}-${{ matrix.tag }}"
62- $nscTargetTaggedImage = "ghcr.io/${package}:${tag}".ToLower()
63- $nscTargetTaggedImageLatest = "ghcr.io/${package}:latest".ToLower()
63+ $nscTargetTaggedImage = "ghcr.io/${owner}/${ package}:${tag}".ToLower()
64+ $nscTargetTaggedImageLatest = "ghcr.io/${owner}/${ package}:latest".ToLower()
6465
6566 $shouldPushImage = (
6667 "${{ github.ref }}" -eq "refs/heads/master" -and
@@ -211,6 +212,10 @@ jobs:
211212
212213 - name : Create Image Size Badge
213214 run : |
215+ $owner = "${{ github.repository_owner }}"
216+ $package = "nabla-shader-compiler-godbolt"
217+ $nscTargetTaggedImageLatest = "ghcr.io/${owner}/${package}:latest".ToLower()
218+
214219 $image = "ghcr.io/devsh-graphics-programming/nabla:nsc-godbolt-latest"
215220 $manifest = docker manifest inspect $image | ConvertFrom-Json
216221
@@ -244,4 +249,4 @@ jobs:
244249 publish_branch : badges
245250 publish_dir : .badge-public
246251 keep_files : true
247- commit_message : " [CI] badges update"
252+ commit_message : " [CI] badges update"
You can’t perform that action at this time.
0 commit comments