Skip to content

Commit 9db6110

Browse files
authored
ci: remove standalone azure and gcp PyPI publish steps (#554)
The Python release model publishes a single mistralai package to PyPI. That root wheel already bundles the Azure and GCP clients, so the workflow should not attempt to publish mistralai-azure or mistralai-gcp as standalone PyPI projects. Removing those extra publish steps keeps the workflow aligned with the actual release model and avoids failing after the real package has already been published.
1 parent 091c57f commit 9db6110

1 file changed

Lines changed: 0 additions & 28 deletions

File tree

.github/workflows/sdk_publish_mistralai_sdk.yaml

Lines changed: 0 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -48,31 +48,3 @@ jobs:
4848
print-hash: true
4949
verbose: true
5050
skip-existing: true
51-
52-
- name: Build mistralai-azure
53-
working-directory: packages/azure
54-
run: |
55-
python scripts/prepare_readme.py
56-
uv build --sdist --wheel --out-dir ../../dist/mistralai-azure
57-
58-
- name: Publish mistralai-azure to PyPI
59-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13
60-
with:
61-
packages-dir: dist/mistralai-azure/
62-
print-hash: true
63-
verbose: true
64-
skip-existing: true
65-
66-
- name: Build mistralai-gcp
67-
working-directory: packages/gcp
68-
run: |
69-
python scripts/prepare_readme.py
70-
uv build --sdist --wheel --out-dir ../../dist/mistralai-gcp
71-
72-
- name: Publish mistralai-gcp to PyPI
73-
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13
74-
with:
75-
packages-dir: dist/mistralai-gcp/
76-
print-hash: true
77-
verbose: true
78-
skip-existing: true

0 commit comments

Comments
 (0)