From d66460ab37b36a450a8132a32084dc63938dc486 Mon Sep 17 00:00:00 2001 From: Naim Ahmmed Date: Sun, 8 Feb 2026 21:26:01 +0100 Subject: [PATCH] fix: dispatch binary build workflow after main release --- .github/workflows/release-on-main.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/release-on-main.yml b/.github/workflows/release-on-main.yml index f897073..963ca2f 100644 --- a/.github/workflows/release-on-main.yml +++ b/.github/workflows/release-on-main.yml @@ -107,6 +107,15 @@ jobs: --title "$tag" \ --generate-notes + - name: Trigger binary build and stable tap update + if: steps.version.outputs.should_release == 'true' + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + gh workflow run "Build Release Binary" \ + --ref main \ + -f release_tag="${{ steps.version.outputs.next_tag }}" + - name: Summary run: | echo "should_release=${{ steps.version.outputs.should_release }}"