From 055dcec65b59606180a380257725a35aef76a6ae Mon Sep 17 00:00:00 2001 From: Jared Vititoe Date: Thu, 11 Jun 2026 11:50:42 -0400 Subject: [PATCH] =?UTF-8?q?fix:=20restore=20workflow=5Fdispatch=20to=20cin?= =?UTF-8?q?ny-desktop=20=E2=80=94=20push=20trigger=20doesn't=20fire=20in?= =?UTF-8?q?=20this=20runner=20setup?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/trigger-desktop.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitea/workflows/trigger-desktop.yml b/.gitea/workflows/trigger-desktop.yml index 1d3bd8912..2e25ce729 100644 --- a/.gitea/workflows/trigger-desktop.yml +++ b/.gitea/workflows/trigger-desktop.yml @@ -27,3 +27,10 @@ jobs: git commit -m "chore: bump cinny submodule to ${CINNY_SHA:0:8}" git push origin main fi + # Explicitly dispatch the desktop build — the push trigger alone + # does not fire reliably in this Gitea/act runner setup. + curl -sf -X POST \ + "https://code.lotusguild.org/api/v1/repos/LotusGuild/cinny-desktop/actions/workflows/release.yml/dispatches" \ + -H "Authorization: token $TOKEN" \ + -H "Content-Type: application/json" \ + -d '{"ref":"main"}'