Skip to content

Commit f245f6a

Browse files
committed
add CI steps
Signed-off-by: yaron2 <[email protected]>
1 parent 9f6dbb6 commit f245f6a

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.github/workflows/build-push-to-main.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff 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/*

.github/workflows/build-tag.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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/*

0 commit comments

Comments
 (0)