From edf86cd1bed30812a36ff69e8973f07e500a52f1 Mon Sep 17 00:00:00 2001 From: Nelson PROIA Date: Mon, 25 May 2026 10:28:21 +0200 Subject: [PATCH] ci: remove standalone azure and gcp PyPI publish steps 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. --- .../workflows/sdk_publish_mistralai_sdk.yaml | 28 ------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/sdk_publish_mistralai_sdk.yaml b/.github/workflows/sdk_publish_mistralai_sdk.yaml index f845e8b1..cd1ba183 100644 --- a/.github/workflows/sdk_publish_mistralai_sdk.yaml +++ b/.github/workflows/sdk_publish_mistralai_sdk.yaml @@ -48,31 +48,3 @@ jobs: print-hash: true verbose: true skip-existing: true - - - name: Build mistralai-azure - working-directory: packages/azure - run: | - python scripts/prepare_readme.py - uv build --sdist --wheel --out-dir ../../dist/mistralai-azure - - - name: Publish mistralai-azure to PyPI - uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13 - with: - packages-dir: dist/mistralai-azure/ - print-hash: true - verbose: true - skip-existing: true - - - name: Build mistralai-gcp - working-directory: packages/gcp - run: | - python scripts/prepare_readme.py - uv build --sdist --wheel --out-dir ../../dist/mistralai-gcp - - - name: Publish mistralai-gcp to PyPI - uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13 - with: - packages-dir: dist/mistralai-gcp/ - print-hash: true - verbose: true - skip-existing: true