From 0a51706e04fe5554b215d685f992c58b321bc9e6 Mon Sep 17 00:00:00 2001 From: Erik Darling <2136037+erikdarlingdata@users.noreply.github.com> Date: Wed, 25 Feb 2026 19:40:52 -0500 Subject: [PATCH] Fix release workflow to trigger on draft publish The release event type 'created' doesn't fire when a draft release is published. Add 'published' so draft-then-publish workflow also builds and attaches artifacts. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e7ba32d7..ef240d0c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -6,7 +6,7 @@ on: pull_request: branches: [main, dev] release: - types: [created] + types: [created, published] permissions: contents: write