We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ff0b42 commit 8a478eeCopy full SHA for 8a478ee
.github/workflows/release-sdk.yaml
@@ -35,16 +35,16 @@ jobs:
35
with:
36
python-version: "3.13"
37
38
- - name: Update package version in pyproject.toml
+ - name: Update package version in sdk/sdk/speechmatics/sdk/__init__.py
39
run: |
40
VERSION="${{ needs.extract-version.outputs.version }}"
41
- sed -i "s/version = \".*\"/version = \"$VERSION\"/g" ./sdk/sdk/pyproject.toml
+ sed -i "s/0\.0\.0/$VERSION/g" ./sdk/sdk/speechmatics/sdk/__init__.py
42
echo "Updated version to: $VERSION"
43
- cat ./sdk/sdk/pyproject.toml | grep version
+ cat ./sdk/sdk/speechmatics/sdk/__init__.py | grep __version__
44
45
- name: Build SDK meta-package
46
47
- make install-build
+ make install-dev
48
make build-sdk
49
50
- name: Upload dist
0 commit comments