File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed
Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -106,3 +106,10 @@ jobs:
106106 cd ext/dapr-ext-fastapi
107107 python setup.py sdist bdist_wheel
108108 twine upload dist/*
109+ - name : Build and publish dapr-ext-langgraph
110+ env :
111+ TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
112+ run : |
113+ cd ext/dapr-ext-langgraph
114+ python setup.py sdist bdist_wheel
115+ twine upload dist/*
Original file line number Diff line number Diff line change @@ -115,3 +115,11 @@ jobs:
115115 cd ext/dapr-ext-fastapi
116116 python setup.py sdist bdist_wheel
117117 twine upload dist/*
118+ - name : Build and publish dapr-ext-langgraph
119+ if : startsWith(github.ref_name, 'langgraph-v')
120+ env :
121+ TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
122+ run : |
123+ cd ext/dapr-ext-langgraph
124+ python setup.py sdist bdist_wheel
125+ twine upload dist/*
You can’t perform that action at this time.
0 commit comments