From 6117eb28b661462e040beeac8c60e76f0a3ac765 Mon Sep 17 00:00:00 2001 From: Alexandre Asselin Date: Wed, 29 Nov 2023 23:52:43 -0500 Subject: [PATCH] Update icon-generator.yml --- .github/workflows/icon-generator.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/icon-generator.yml b/.github/workflows/icon-generator.yml index 73e5ce133..69f644cca 100644 --- a/.github/workflows/icon-generator.yml +++ b/.github/workflows/icon-generator.yml @@ -57,9 +57,9 @@ jobs: id: check-changes run: | if git diff --quiet; then - echo "::set-output name=result::No changes" + echo "{result}={No changes}" >> $GITHUB_OUTPUT else - echo "::set-output name=result::Changes detected" + echo "{result}={Changes detected}" >> $GITHUB_OUTPUT fi - name: Commit changes