feat(desktop): add arm64 support

... also add os name in artifact
This commit is contained in:
Guoguo
2025-12-26 15:23:55 +08:00
parent 550e01a3a8
commit 01e40656cc
3 changed files with 9 additions and 8 deletions

View File

@@ -39,7 +39,7 @@ jobs:
name: Build Browser Bundle
needs: detect-changes
runs-on: ubuntu-latest
if: needs.detect-changes.outputs.browser == 'true'
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.browser == 'true'
defaults:
run:
working-directory: browser
@@ -69,7 +69,7 @@ jobs:
name: Build Desktop Apps
needs: detect-changes
runs-on: ${{ matrix.os }}
if: needs.detect-changes.outputs.desktop == 'true'
if: github.event_name == 'workflow_dispatch' || needs.detect-changes.outputs.desktop == 'true'
strategy:
fail-fast: false
matrix: