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 6d28345 commit 131b075
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 [[ -d "$RELEASE_ASSETS_DIR" && -n "$(ls -A "$RELEASE_ASSETS_DIR")" ]]; then
if ls "$RELEASE_ASSETS_DIR"/*; then
gh release upload --clobber "$MAJOR_VERSION" "$RELEASE_ASSETS_DIR"/*
fi

Expand Down

0 comments on commit 131b075

Please sign in to comment.