From 07bde50b98ac9acf4cde7d6c58f608d5d44bfc37 Mon Sep 17 00:00:00 2001 From: J0J0 Todos Date: Wed, 18 Oct 2023 18:39:11 +0200 Subject: [PATCH] Dont use deprecated set-outputs gh-action "release" --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 75e5e48d..f8d2e59a 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -70,9 +70,9 @@ jobs: run: | if [[ "${{ steps.last_release.outputs.tag_name }}" == "${{ env.tag_full }}" ]]; then - echo "::set-output name=release_existing::true" + echo "{release_existing}={true}" >> $GITHUB_OUTPUT else - echo "::set-output name=release_existing::false" + echo "{release_existing}={false}" >> $GITHUB_OUTPUT fi - name: Create release