Remove condition for the execution of make publish, the execution is done by GitHub actions

This commit is contained in:
Gustavo Schaedler 2023-06-09 20:15:00 +01:00
commit 547e10b374

View file

@ -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 '----'