Skip to content

Commit

Permalink
ci: Don't mark builds as pre-release (#60)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmorley authored Jun 27, 2024
1 parent 35dc452 commit cbb6e1e
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,7 @@ set -o pipefail
set -x

# Actually make the release.
FLAGS=()
if $CHANGES_INITIAL_DEVELOPMENT ; then
FLAGS+=("--prerelease")
elif $CHANGES_PRE_RELEASE ; then
FLAGS+=("--prerelease")
fi
gh release create "$CHANGES_TAG" --title "$CHANGES_QUALIFIED_TITLE" --notes-file "$CHANGES_NOTES_FILE" "${FLAGS[@]}"
gh release create "$CHANGES_TAG" --title "$CHANGES_QUALIFIED_TITLE" --notes-file "$CHANGES_NOTES_FILE"

# Upload the attachments.
for attachment in "$@"
Expand Down

0 comments on commit cbb6e1e

Please sign in to comment.