Closed jongwooo closed 1 year ago
Closes #174
Update .github/workflows/publish-multi-arch-container-images.yaml to use environment file instead of deprecated set-output command. For more information, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
.github/workflows/publish-multi-arch-container-images.yaml
set-output
I found the workflow file that use set-output command through the following command:
$ find . -name '*.yml' -o -name '*.yaml' | xargs egrep '\bset-output\b'
AS-IS
echo ::set-output name=docker-tags::${DOCKER_TAGS}
TO-BE
echo "docker-tags=${DOCKER_TAGS}" >> $GITHUB_OUTPUT
Description
Closes #174
Update
.github/workflows/publish-multi-arch-container-images.yaml
to use environment file instead of deprecatedset-output
command. For more information, see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/I found the workflow file that use
set-output
command through the following command:AS-IS
TO-BE