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