From 3cc7b18b7d11f4e3e3d534108d38cd6898307901 Mon Sep 17 00:00:00 2001 From: Vlada Dusek Date: Wed, 18 Feb 2026 09:05:59 +0100 Subject: [PATCH] ci: Trigger doc release on stable release The stable release pipeline was missing a doc release step, so the changelog on the website was not updated after a stable release. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/manual_release_stable.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/manual_release_stable.yaml b/.github/workflows/manual_release_stable.yaml index 327707eb..c3d9ee9e 100644 --- a/.github/workflows/manual_release_stable.yaml +++ b/.github/workflows/manual_release_stable.yaml @@ -95,6 +95,15 @@ jobs: - name: Publish package to PyPI uses: pypa/gh-action-pypi-publish@release/v1 + doc_release: + name: Doc release + needs: [changelog_update, pypi_publish] + uses: ./.github/workflows/_release_docs.yaml + with: + # Use the ref from the changelog update to include the updated changelog. + ref: ${{ needs.changelog_update.outputs.changelog_commitish }} + secrets: inherit + trigger_docker_build: name: Trigger Docker image build needs: [release_prepare, changelog_update]