Remove condition for the execution of make publish, the execution is done by GitHub actions
This commit is contained in:
parent
8a08ebdbe7
commit
547e10b374
1 changed files with 2 additions and 16 deletions
18
Makefile
18
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 '----'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue