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 d7ace10 commit b8d2509
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ runs:
run: |
MINOR_RELEASE_EXISTS="$(gh release view ${MINOR_TAG} --json id -q .id | wc -l )"

Check warning on line 130 in action.yml

View workflow job for this annotation

GitHub Actions / Static tests

130:81 [line-length] line too long (88 > 80 characters)
MAJOR_RELEASE_EXISTS="$(gh release view ${MAJOR_TAG} --json id -q .id | wc -l )"

Check warning on line 131 in action.yml

View workflow job for this annotation

GitHub Actions / Static tests

131:81 [line-length] line too long (88 > 80 characters)
if [[ "$MINOR_RELEASE_EXISTS" = '0']] && [[ "$MAJOR_RELEASE_EXISTS" = '0' ]]; then
if [[ "${MINOR_RELEASE_EXISTS}${MAJOR_RELEASE_EXISTS}" = '00' ]]; then
echo "::warning::No inner release to update !"
exit 0
fi
Expand Down

0 comments on commit b8d2509

Please sign in to comment.