From 5f0532a700d273704afc9942dae6b933c5a74ce8 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Tue, 1 Nov 2022 16:46:51 +0100 Subject: [PATCH] fix: issue deployment for releases and tags --- .github/actions/extract-branch/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/extract-branch/action.yml b/.github/actions/extract-branch/action.yml index fc7594d42..b0f7a7820 100644 --- a/.github/actions/extract-branch/action.yml +++ b/.github/actions/extract-branch/action.yml @@ -16,7 +16,7 @@ runs: script: | return ( context?.payload?.pull_request?.head?.ref || - context?.payload?.ref + context?.payload?.ref || "" ).replace("refs/heads/",""); - name: 🪑 Set output