From f3f37481734cb2c1599202932010ce9a6fc438f2 Mon Sep 17 00:00:00 2001 From: Mike Solar Date: Sun, 16 Aug 2026 18:09:36 +0800 Subject: [PATCH] ci(cd): release needs only the linux job while macos/windows stay disabled --- .github/workflows/cd.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 9bf529405..3494e7cbd 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -319,11 +319,12 @@ jobs: # ------------------------------------------------------------------ # Publish: attach every platform package to the v* tag's GitHub release # (skipped on workflow_dispatch, which only uploads artifacts). The - # windows job is disabled (app does not link on Windows yet). + # macOS and Windows jobs are disabled for now (macOS: runner budget; + # Windows: app does not link yet) — only the linux packages publish. # ------------------------------------------------------------------ release: name: Publish GitHub release - needs: [linux, macos] + needs: [linux] if: startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-latest steps: