Files
wehub-resource-sync f99010fae1
CI / lint (push) Failing after 1s
CI / frontend (push) Failing after 1s
CI / scripts (push) Failing after 1s
CI / Go Test (ubuntu-latest) (push) Failing after 0s
CI / frontend-node-25 (push) Failing after 1s
CI / docs (push) Failing after 0s
CI / coverage (push) Failing after 0s
CI / e2e (push) Failing after 0s
Docker / build-and-push (push) Failing after 1s
CI / integration (push) Failing after 4m43s
CI / Go Test (windows-latest) (push) Has been cancelled
CI / Desktop Unit Tests (Windows) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux (arm64)) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Linux) (push) Has been cancelled
Desktop Artifacts / Desktop Build (Windows) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (aarch64)) (push) Has been cancelled
Desktop Artifacts (macOS) / Desktop Build (macOS (x86_64)) (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:30:36 +08:00

56 lines
1.7 KiB
YAML

name: Desktop Artifacts (macOS)
on:
# This workflow is the only workflow allowed to use the ci-runners group.
# The organization runner-group policy must pin access to this path on main.
push:
branches: [main]
paths:
- 'desktop/**'
- 'frontend/**'
- 'go.mod'
- 'go.sum'
- '.github/workflows/desktop-macos-main.yml'
- '.github/actions/build-desktop-artifact/**'
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Desktop Build (${{ matrix.name }})
runs-on:
group: ci-runners
labels: [self-hosted, macOS, "${{ matrix.runner_arch }}"]
strategy:
fail-fast: false
matrix:
include:
- name: macOS (aarch64)
runner_arch: ARM64
bundle: app
target_triple: aarch64-apple-darwin
artifact_name: agentsview-desktop-macos-aarch64
artifact_dir: desktop/src-tauri/target/aarch64-apple-darwin/release/bundle/macos/
- name: macOS (x86_64)
runner_arch: X64
bundle: app
target_triple: x86_64-apple-darwin
artifact_name: agentsview-desktop-macos-x86_64
artifact_dir: desktop/src-tauri/target/x86_64-apple-darwin/release/bundle/macos/
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: ./.github/actions/build-desktop-artifact
with:
bundle: ${{ matrix.bundle }}
target_triple: ${{ matrix.target_triple }}
artifact_name: ${{ matrix.artifact_name }}
artifact_dir: ${{ matrix.artifact_dir }}