File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed
Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 1818 run : pip install flit
1919 - name : Install Dependencies
2020 run : flit install --symlink
21+ - name : Install build dependencies
22+ run : pip install build
23+ - name : Build distribution
24+ run : python -m build
2125 - name : Publish
22- env :
23- FLIT_USERNAME : ${{ secrets.FLIT_USERNAME }}
24- FLIT_PASSWORD : ${{ secrets.FLIT_PASSWORD }}
25- run : flit publish
26+ uses : pypa/gh-action-pypi-publish@v1.8.10
27+ with :
28+ password : ${{ secrets.FLIT_PASSWORD }}
Original file line number Diff line number Diff line change 33from functools import update_wrapper
44
55import click
6- from ellar .threading import run_with_sync_worker
6+ from ellar .threading import execute_coroutine_with_sync_worker
77
88from ellar_cli .constants import ELLAR_META , ELLAR_PROJECT_NAME
99from ellar_cli .service import EllarCLIService
@@ -22,7 +22,7 @@ def _async_run(future: t.Coroutine) -> t.Any:
2222 loop .stop ()
2323 loop .close ()
2424 else :
25- res = run_with_sync_worker (future )
25+ res = execute_coroutine_with_sync_worker (future )
2626
2727 return res
2828
You can’t perform that action at this time.
0 commit comments