From f3e70316b1764ee54b8563631015fdadf654c3a9 Mon Sep 17 00:00:00 2001 From: Jongwoo Han Date: Mon, 4 Sep 2023 01:31:02 +0900 Subject: [PATCH] Replace deprecated command with environment file --- .github/workflows/publish-multi-arch-container-images.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-multi-arch-container-images.yaml b/.github/workflows/publish-multi-arch-container-images.yaml index bd8c4f5f..88f567d5 100644 --- a/.github/workflows/publish-multi-arch-container-images.yaml +++ b/.github/workflows/publish-multi-arch-container-images.yaml @@ -53,14 +53,14 @@ jobs: if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.*$ ]]; then DOCKER_TAGS="$DOCKER_TAGS,${DOCKER_IMAGE}:latest" fi - echo ::set-output name=docker-tags::${DOCKER_TAGS} + echo "docker-tags=${DOCKER_TAGS}" >> $GITHUB_OUTPUT echo ${DOCKER_TAGS} GHCR_IMAGE=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME GHCR_TAGS="${GHCR_IMAGE}:${VERSION}" if [[ $VERSION =~ ^v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}.*$ ]]; then GHCR_TAGS="$GHCR_TAGS,${GHCR_IMAGE}:latest" fi - echo ::set-output name=ghcr-tags::${GHCR_TAGS} + echo "ghcr-tags=${GHCR_TAGS}" >> $GITHUB_OUTPUT echo ${GHCR_TAGS} - name: Set up QEMU