Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions .github/workflows/native-mac-installer-preview.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0

name: Release / Mac Installer Preview

on:
workflow_dispatch:

permissions:
contents: read

concurrency:
group: native-mac-installer-preview-${{ github.ref }}
cancel-in-progress: true

jobs:
build-macos-dmg:
if: github.repository == 'NVIDIA/NemoClaw'
runs-on: macos-15
timeout-minutes: 30
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Set up Node
uses: actions/setup-node@v6
with:
node-version: "22.16.0"
cache: npm

- name: Install dependencies
run: npm ci --ignore-scripts

- name: Build Mac Installer Preview DMG
env:
DEVELOPER_ID_APPLICATION: ${{ secrets.MACOS_DEVELOPER_ID_APPLICATION }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
run: npm run build:native-mac-installer

- name: Upload Mac Installer Preview artifacts
uses: actions/upload-artifact@v4
with:
name: NemoClaw-Mac-Installer-Preview
path: |
build/native-mac-installer-preview/*.dmg
build/native-mac-installer-preview/*.app
if-no-files-found: error
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ coverage/
dist/
docs/_build/
node_modules/
build/
.build/

# OS metadata
.DS_Store
Expand Down
17 changes: 17 additions & 0 deletions apps/native-installers/macos/NemoClawMacInstaller/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// swift-tools-version: 5.9

import PackageDescription

let package = Package(
name: "NemoClawMacInstaller",
platforms: [.macOS(.v13)],
products: [
.executable(name: "NemoClawMacInstaller", targets: ["NemoClawMacInstaller"])
],
targets: [
.executableTarget(
name: "NemoClawMacInstaller",
resources: [.process("Resources")]
)
]
)
13 changes: 13 additions & 0 deletions apps/native-installers/macos/NemoClawMacInstaller/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# NemoClaw Mac Installer Preview

Experimental macOS SwiftUI shell for the opt-in Mac Installer Preview path.

The app calls the app-facing CLI APIs:

- `nemoclaw native-installer mac assess --json`
- `nemoclaw native-installer mac install --config <json> --json-progress`
- `nemoclaw native-installer mac launch --agent <openclaw|hermes> --json`
- `nemoclaw diagnostics export --output <path>`

Set `NEMOCLAW_MAC_INSTALLER_CLI` to point at a bundled or local `nemoclaw` binary during development.
Release builds should use the payload assembled by `scripts/native-installers/macos/build-preview.sh`.
Loading
Loading