Skip to content

Commit b381e28

Browse files
fix github tag creation
1 parent 8c68f92 commit b381e28

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bin/create-package

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ echo "$(basename "$PACKAGE_FILE") created ($SIZE)"
8686
# Create tag in Git and push to remote
8787
printf "\nPush v$VERSION to GitHub (y)"
8888
read CONFIRM
89-
if [[ "$CONFIRM" == "n" ]]; then
89+
if [[ "$CONFIRM" != "n" ]]; then
9090
git tag "$VERSION"
9191
git push origin main
9292
git push origin "tags/$VERSION"

0 commit comments

Comments
 (0)