Add desktop client dev branch support

This commit is contained in:
世界
2026-08-31 11:28:31 +08:00
parent 336cde087e
commit 138ba19b25
2 changed files with 9 additions and 2 deletions
+1
View File
@@ -12,3 +12,4 @@ function updateClient() {
updateClient "apple"
updateClient "android"
updateClient "desktop"
+8 -2
View File
@@ -965,8 +965,11 @@ jobs:
- name: Checkout desktop client
run: git submodule update --init clients/desktop
- name: Checkout main branch
if: github.ref == 'refs/heads/testing'
if: github.ref == 'refs/heads/stable' && github.event_name != 'workflow_dispatch'
run: git -C clients/desktop checkout main
- name: Checkout dev branch
if: github.ref == 'refs/heads/testing'
run: git -C clients/desktop checkout dev
- name: Checkout desktop submodules
run: git -C clients/desktop submodule update --init --recursive
- name: Setup Go
@@ -1074,8 +1077,11 @@ jobs:
- name: Checkout desktop client
run: git submodule update --init clients/desktop
- name: Checkout main branch
if: github.ref == 'refs/heads/testing'
if: github.ref == 'refs/heads/stable' && github.event_name != 'workflow_dispatch'
run: git -C clients/desktop checkout main
- name: Checkout dev branch
if: github.ref == 'refs/heads/testing'
run: git -C clients/desktop checkout dev
- name: Checkout desktop submodules
run: git -C clients/desktop submodule update --init --recursive
- name: Setup Go