From 31a8edb2f763b0621533b11ddb65ba03d1a357a8 Mon Sep 17 00:00:00 2001 From: Hammerbeck Date: Wed, 22 May 2024 14:42:17 +0200 Subject: [PATCH] fix variable not getting value 2 --- .github/actions/release-to-git/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/release-to-git/action.yml b/.github/actions/release-to-git/action.yml index aa0410d0..137676c5 100644 --- a/.github/actions/release-to-git/action.yml +++ b/.github/actions/release-to-git/action.yml @@ -25,7 +25,7 @@ runs: - name: Create release shell: bash - if: ${{ set-latest-tag.latest_tag != steps.get-version.outputs.version }} + if: ${{ set-latest-tag.outputs.latest_tag != steps.get-version.outputs.version }} env: GITHUB_TOKEN: ${{ inputs.GITHUB_TOKEN }} tag: ${{ github.ref_name }}