File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -157,28 +157,28 @@ jobs:
157157 - name : Merge Metadata Bake Definitions
158158 run : |
159159 INPUT=(${{ steps.meta-k3d-binary.outputs.bake-file }} ${{ steps.meta-k3d-dind.outputs.bake-file }} ${{ steps.meta-k3d-proxy.outputs.bake-file }} ${{ steps.meta-k3d-tools.outputs.bake-file }})
160- OUT_FILE=. /bake-metadata.json
161- OUT_FILE_TMP=. /bake-metadata-tmp.json
162-
160+ OUT_FILE=$GITHUB_WORKSPACE /bake-metadata.json
161+ OUT_FILE_TMP=$GITHUB_WORKSPACE /bake-metadata-tmp.json
162+
163163 cat << EOF > $OUT_FILE
164164 {
165165 " target " : {}
166166 }
167167 EOF
168-
168+
169169 for file in "${INPUT[@]}"; do
170170 cat $OUT_FILE > $OUT_FILE_TMP
171171 jq -s '.[0] * .[1]' $OUT_FILE_TMP $file > $OUT_FILE
172172 done
173-
173+
174174 rm "$OUT_FILE_TMP"
175175 # Build and Push container images
176176 - name : Build Images
177177 uses : docker/bake-action@v6
178178 with :
179179 files : |
180180 ./docker-bake.hcl
181- . /bake-metadata.json
181+ $GITHUB_WORKSPACE /bake-metadata.json
182182 targets : release
183183 push : false
184184 # Wait for tests to pass and push images (ONLY ON TAG)
You can’t perform that action at this time.
0 commit comments