Skip to content

Commit 97cec15

Browse files
Fix GitHub actions output syntax
1 parent bf996c8 commit 97cec15

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build-images.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ images+=("${repobase}/${reponame}")
6262
# Warning! docker::// protocol expects lowercase letters (,,)
6363
if [[ -n "${CI}" ]]; then
6464
# Set output value for Github Actions
65-
printf "::set-output name=images::%s\n" "${images[*],,}"
65+
printf "images=%s\n" "${images[*],,}" >> "${GITHUB_OUTPUT}"
6666
else
6767
# Just print info for manual push
6868
printf "Publish the images with:\n\n"

0 commit comments

Comments
 (0)