From 1cbfc49e4482cabd1d4214d1cdc5358ef89fed39 Mon Sep 17 00:00:00 2001 From: Nelson PROIA Date: Fri, 22 May 2026 17:57:34 +0200 Subject: [PATCH] ci: narrow publish trigger to root RELEASES.md only The publish workflow builds a single bundled mistralai wheel from root pyproject.toml that includes the sub-packages as source. Only the root RELEASES.md changing reflects a new release. Sub-package RELEASES.md changes (packages/azure, packages/gcp) shouldn't trigger publish runs since they don't produce a new wheel. --- .github/workflows/sdk_publish_mistralai_sdk.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sdk_publish_mistralai_sdk.yaml b/.github/workflows/sdk_publish_mistralai_sdk.yaml index 7ef2419d..f845e8b1 100644 --- a/.github/workflows/sdk_publish_mistralai_sdk.yaml +++ b/.github/workflows/sdk_publish_mistralai_sdk.yaml @@ -13,7 +13,7 @@ permissions: branches: - main paths: - - "**/RELEASES.md" + - RELEASES.md jobs: publish: name: Publish Python SDKs to PyPI