From e4e80b16a8603ff2b2c85c37073ad6fb0df10099 Mon Sep 17 00:00:00 2001 From: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> Date: Tue, 30 Jun 2026 16:37:17 +0300 Subject: [PATCH] fix(ci): trigger docs build on release published instead of created Draft releases do not fire workflow events. Since all releases are created as drafts first, the 'created' type never triggers a build. The 'published' type fires when the draft is made public. Signed-off-by: Dan Calavrezo <195309321+dcalavrezo-qorix@users.noreply.github.com> --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 0e4f1fcbdf..d6f935c9cb 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -26,7 +26,7 @@ on: branches: - main release: - types: [created] + types: [published] merge_group: types: [checks_requested]