From 7c6e9564c2d83a23b839ada16248eb1b9b3dfe1c Mon Sep 17 00:00:00 2001 From: jongwooo Date: Sat, 17 Jun 2023 00:10:29 +0900 Subject: [PATCH] Replace deprecated command with environment file --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3057f735..a8505c8e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,8 +39,8 @@ jobs: elif [[ $GITHUB_REF == refs/pull/* ]]; then TAGS="${{ secrets.DOCKER_IMAGE }}:pr-${{ github.event.number }}" fi - echo ::set-output name=tags::${TAGS} - echo ::set-output name=created::$(date -u +'%Y-%m-%dT%H:%M:%SZ') + echo "tags=${TAGS}" >> $GITHUB_OUTPUT + echo "created=$(date -u +'%Y-%m-%dT%H:%M:%SZ')" >> $GITHUB_OUTPUT - name: Set up QEMU uses: docker/setup-qemu-action@v1