diff --git a/action.yml b/action.yml index 7018feb..3aa19af 100644 --- a/action.yml +++ b/action.yml @@ -142,10 +142,10 @@ runs: echo "PARAMS=${PARAMS}" # Debug if ! [[ "${MINOR_RELEASE_EXISTS}" -eq 0 ]]; then echo "Updating minor release ${MINOR_TAG} with ${PARAMS}" - gh release edit ${MINOR_TAG@Q} ${PARAMS} + gh release edit ${MINOR_TAG} ${PARAMS} fi # Update major release at the end, so it will become the latest if --latest is used ! if ! [[ "${MAJOR_RELEASE_EXISTS}" -eq 0 ]]; then echo "Updating major release ${MAJOR_TAG} with ${PARAMS}" - gh release edit ${MAJOR_TAG@Q} ${PARAMS} + gh release edit ${MAJOR_TAG} ${PARAMS} fi