From 0c6e6fa82bd94501c9a6869c89d4877b12594049 Mon Sep 17 00:00:00 2001 From: Guy Sartorelli Date: Thu, 16 Jun 2022 10:33:00 +1200 Subject: [PATCH] FIX Correct a copy/paste error. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index dbf7340..731b1a6 100644 --- a/action.yml +++ b/action.yml @@ -50,7 +50,7 @@ runs: echo "Unable to check tag status for $TAG - HTTP response code was $RESP_CODE" exit 1 fi - RELEASE_ID=$https://docs.github.com/en/rest/git/refs#get-a-reference(jq .id __response.json) + RELEASE_ID=$(jq .id __response.json) if [[ $RELEASE_ID == "null" ]]; then echo "Did not find an existing release for tag $TAG" else