Skip to content

Commit

Permalink
Update entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 authored Dec 19, 2022
1 parent 83bfd7b commit 6d28345
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ done
if [[ -f "$INPUTS_RELEASE_NOTES_FILE" ]]; then
if gh release view "$MAJOR_VERSION" > /dev/null 2>&1; then
gh release edit "$MAJOR_VERSION" --notes-file "$INPUTS_RELEASE_NOTES_FILE" --title "$MAJOR_VERSION"
if [[ -n "$(ls -A "$RELEASE_ASSETS_DIR")" ]]; then
if [[ -d "$RELEASE_ASSETS_DIR" && -n "$(ls -A "$RELEASE_ASSETS_DIR")" ]]; then
gh release upload --clobber "$MAJOR_VERSION" "$RELEASE_ASSETS_DIR"/*
fi

Expand Down

0 comments on commit 6d28345

Please sign in to comment.