Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yoanm committed Aug 25, 2024
1 parent 28bc768 commit 0cc9583
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 0cc9583

Please sign in to comment.