File tree Expand file tree Collapse file tree 4 files changed +5
-15
lines changed
Expand file tree Collapse file tree 4 files changed +5
-15
lines changed Original file line number Diff line number Diff line change 2424 env :
2525 BUILD_IMAGES : ${{ inputs.images }}
2626 BUILD_CHAPTERS : ${{ inputs.chapters }}
27- FILTER : ${{ inputs.filter }}
27+ FILTER : ${{ inputs.filter }}
28+ DOCKER_BUILDKIT : 0
Original file line number Diff line number Diff line change 2424 env :
2525 BUILD_IMAGES : ${{ inputs.images }}
2626 BUILD_CHAPTERS : ${{ inputs.chapters }}
27- FILTER : ${{ inputs.filter }}
27+ FILTER : ${{ inputs.filter }}
28+ DOCKER_BUILDKIT : 0
Original file line number Diff line number Diff line change @@ -153,12 +153,6 @@ jobs:
153153 - chapters-windows-ltsc2025
154154 runs-on : ubuntu-latest
155155 steps :
156- - uses : regclient/actions/regctl-installer@main
157- - uses : regclient/actions/regctl-login@main
158- with :
159- registry : docker.io
160- username : ${{ secrets.DOCKER_HUB_USERNAME }}
161- password : ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
162156 - uses : docker/login-action@v3
163157 with :
164158 username : ${{ secrets.DOCKER_HUB_USERNAME }}
Original file line number Diff line number Diff line change 22 [string ]$Filter = $null ,
33 [switch ]$Images = $true ,
44 [switch ]$Chapters = $false ,
5- [switch ]$UseRegctl = $true ,
65 [switch ]$Delete = $false ,
76 [switch ]$Pull = $false
87)
5150 $variantList = @ ()
5251 foreach ($variant in $variants ) {
5352 $ref = " $ ( $image ) -$variant "
54- if ($UseRegctl ) {
55- $manifest = regctl manifest get $ref -- format raw- body | ConvertFrom-Json
56- }
57- else {
58- $manifest = docker manifest inspect $ref | ConvertFrom-Json
59- }
53+ $manifest = docker manifest inspect $ref | ConvertFrom-Json
6054 if ($null -ne $manifest -and $manifest.mediaType -eq $manifestMediaType ) {
6155 $variantList += $ref
6256 echo " ** Image variant found. Will add to manifest list: $ref "
You can’t perform that action at this time.
0 commit comments