Skip to content

Commit

Permalink
build(release): fix the gh prerelease flag
Browse files Browse the repository at this point in the history
  • Loading branch information
jponge committed Nov 22, 2024
1 parent daa585c commit 94c257c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ perform-release:
case "${RELEASE_VERSION}" in
*-RC*)
pre_release=1
gh_extra_args="${gh_extra_args} --pre_release --latest=false"
gh_extra_args="${gh_extra_args} --prerelease --latest=false"
;;
*-M*)
pre_release=1
gh_extra_args="${gh_extra_args} --pre_release --latest=false"
gh_extra_args="${gh_extra_args} --prerelease --latest=false"
;;
esac
if [[ pre_release -eq 1 ]]; then
Expand Down

0 comments on commit 94c257c

Please sign in to comment.