From 54a1f4e83dba4e0b6dec420b2c54fd0c6e5abe58 Mon Sep 17 00:00:00 2001 From: Guillaume Dumont Date: Fri, 16 Jan 2026 10:02:14 +0100 Subject: [PATCH] Allow the publish workflow to be triggered manually pyproject.toml is managed manually (until we enable custom code) and we can forget to update the version there. Since the workflow only triggers when the README changes, it will not start if we fix the version in a separate commit. Allowing it to be triggered manually mitigates this issue. --- .github/workflows/sdk_publish_mistralai_sdk.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sdk_publish_mistralai_sdk.yaml b/.github/workflows/sdk_publish_mistralai_sdk.yaml index 55b29ec1..a457b6c1 100644 --- a/.github/workflows/sdk_publish_mistralai_sdk.yaml +++ b/.github/workflows/sdk_publish_mistralai_sdk.yaml @@ -5,6 +5,7 @@ permissions: pull-requests: write statuses: write "on": + workflow_dispatch: push: branches: - main