From 606b0a00fcc03471d8f87b9ce08559ce28ce31b6 Mon Sep 17 00:00:00 2001 From: binhex Date: Sat, 21 Jan 2023 19:32:33 +0000 Subject: [PATCH] switch from set to env vars --- .github/workflows/workflow-docker-manual.yml | 4 ++-- .github/workflows/workflow-docker-release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/workflow-docker-manual.yml b/.github/workflows/workflow-docker-manual.yml index 993764f..685bd81 100644 --- a/.github/workflows/workflow-docker-manual.yml +++ b/.github/workflows/workflow-docker-manual.yml @@ -43,14 +43,14 @@ jobs: run: | test_tag=$(date +%Y%m%d%H%M%S) echo "[debug] Generated test tag name is '${test_tag}'" - echo "::echo "test_tag=$test_tag" >> $GITHUB_OUTPUT" + echo "test_tag=$test_tag" >> $GITHUB_OUTPUT id: generate_temporary_tag_name - name: Generate app name shell: bash run: | app_name=$(echo "${GITHUB_REPOSITORY}" | grep -P -o -m 1 '(?<=/arch-).*') echo "[debug] Generated app name is '${app_name}'" - echo "::set-output name=app_name::$app_name" + echo "app_name=$app_name" >> $GITHUB_OUTPUT id: generate_app_name - name: Build Docker image and tag uses: nick-fields/retry@v2 diff --git a/.github/workflows/workflow-docker-release.yml b/.github/workflows/workflow-docker-release.yml index 6999abe..a559a09 100644 --- a/.github/workflows/workflow-docker-release.yml +++ b/.github/workflows/workflow-docker-release.yml @@ -61,14 +61,14 @@ jobs: run: | test_tag=$(date +%Y%m%d%H%M%S) echo "[debug] Generated test tag name is '${test_tag}'" - echo "::echo "test_tag=$test_tag" >> $GITHUB_OUTPUT" + echo "test_tag=$test_tag" >> $GITHUB_OUTPUT id: generate_temporary_tag_name - name: Generate app name shell: bash run: | app_name=$(echo "${GITHUB_REPOSITORY}" | grep -P -o -m 1 '(?<=/arch-).*') echo "[debug] Generated app name is '${app_name}'" - echo "::set-output name=app_name::$app_name" + echo "app_name=$app_name" >> $GITHUB_OUTPUT id: generate_app_name - name: Build Docker image and tag uses: nick-fields/retry@v2