Skip to content
Merged
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
18 changes: 16 additions & 2 deletions .github/workflows/desktop-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,8 @@ jobs:
if [ "${{ runner.os }}" = "macOS" ]; then
cp scripts/install-macos-app.sh dist/DevOpster-macos-install.sh
chmod +x dist/DevOpster-macos-install.sh
cp scripts/install-macos-app.command dist/DevOpster-macos-install.command
chmod +x dist/DevOpster-macos-install.command
fi
ls -la dist || true

Expand Down Expand Up @@ -398,6 +400,8 @@ jobs:
fi
cp scripts/install-macos-app.sh dist/DevOpster-macos-install.sh
chmod +x dist/DevOpster-macos-install.sh
cp scripts/install-macos-app.command dist/DevOpster-macos-install.command
chmod +x dist/DevOpster-macos-install.command
ls -la dist || true

- name: Upload artifacts
Expand Down Expand Up @@ -461,6 +465,7 @@ jobs:
|---|---|---|
| **macOS** | `*.dmg` | Recommended. Drag `DevOpster.app` to `/Applications` or `~/Applications` |
| **macOS** | `*.app.tar.gz` | Advanced/manual extraction |
| **macOS** | `DevOpster-macos-install.command` | Double-click guided installer (choose install location) |
| **macOS** | `DevOpster-macos-install.sh` | One-click installer script (path-aware + quarantine clear) |
| **Windows** | `*-setup.exe` | Recommended NSIS installer |
| **Windows** | `*.msi` | MSI deployment/install option |
Expand All @@ -471,11 +476,20 @@ jobs:
### macOS trust and verification

- Stable releases are signed and notarized when Apple credentials are configured in CI.
- You can run the one-click installer from the mounted DMG or extracted assets:
- If macOS blocks opening the downloaded DMG itself, clear quarantine on the DMG and open it:

```bash
DMG_PATH="$HOME/Downloads/DevOpster_0.1.0_aarch64.dmg"
xattr -dr com.apple.quarantine "$DMG_PATH"
open "$DMG_PATH"
```

- Easiest option: double-click `DevOpster-macos-install.command` from Finder.
- Terminal option:

```bash
chmod +x ./DevOpster-macos-install.sh
./DevOpster-macos-install.sh
./DevOpster-macos-install.sh "$HOME/Downloads/DevOpster_0.1.0_aarch64.dmg"
```

- If you are testing an unsigned prerelease build and Gatekeeper blocks launch, run with your chosen install path:
Expand Down
Loading
Loading