Skip to content

Commit 1386e97

Browse files
committed
chore: fix python relase dry run
1 parent fcaf3d2 commit 1386e97

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/release-sdk.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,11 @@ jobs:
111111
rm -f packages/sdk/langs/python/superdoc/tools/__init__.py
112112
113113
- name: Build Python SDK
114-
run: python -m build
114+
run: |
115+
mkdir -p superdoc/_vendor/cli
116+
touch superdoc/_vendor/__init__.py
117+
touch superdoc/_vendor/cli/__init__.py
118+
python -m build
115119
working-directory: packages/sdk/langs/python
116120

117121
- name: Publish Python SDK to PyPI

0 commit comments

Comments
 (0)