From 547e10b3741e6b1f5f30d2eb23b724d423446fbe Mon Sep 17 00:00:00 2001 From: Gustavo Schaedler Date: Fri, 9 Jun 2023 20:15:00 +0100 Subject: [PATCH] Remove condition for the execution of make publish, the execution is done by GitHub actions --- Makefile | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/Makefile b/Makefile index 4ff5030c6..6c1989ee1 100644 --- a/Makefile +++ b/Makefile @@ -83,22 +83,8 @@ else endif publish: - @while true; do \ - read -p "Do you want to build and publish LangFlow? [y/n]: " yn; \ - case "$$yn" in \ - y|Y ) \ - echo "Building..."; \ - make build; \ - echo "Publishing..."; \ - poetry publish; \ - break ;; \ - n|N ) \ - echo "Bye!!!"; \ - break ;; \ - * ) \ - echo "Invalid response, please enter 'y' or 'n'.\n" ;; \ - esac \ - done + make build + poetry publish help: @echo '----'