Skip to content

Commit ad3c52a

Browse files
committed
Fix macOS release runners
1 parent 0cb6601 commit ad3c52a

3 files changed

Lines changed: 19 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ jobs:
1919
- label: linux-x64
2020
os: ubuntu-latest
2121
- label: darwin-x64
22-
os: macos-13
22+
os: macos-15-intel
2323
- label: darwin-arm64
24-
os: macos-14
24+
os: macos-15
2525

2626
steps:
2727
- name: Check out repository

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@ Use foreground mode while debugging:
6666
./attention start --foreground
6767
```
6868

69+
macOS release binaries are not Apple Developer ID signed or notarized yet. If Gatekeeper warns on
70+
first launch, open the binary explicitly from Finder or remove the quarantine attribute:
71+
72+
```sh
73+
xattr -d com.apple.quarantine ./attention
74+
./attention start
75+
```
76+
6977
### Clone And Extend
7078

7179
Use the source path when you want to inspect, modify, or extend the app:

docs/INSTALL.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,15 @@ operator/capability references.
5555
The packaged executable resolves UI assets from the sibling `dist/` directory, so it can be launched
5656
from inside the extracted folder or by absolute path from another working directory.
5757

58+
Release binaries are not Apple Developer ID signed or notarized yet. On macOS, Gatekeeper may show a
59+
first-run warning for downloaded archives. You can still run Attention by opening the binary
60+
explicitly from Finder or by removing the quarantine attribute:
61+
62+
```sh
63+
xattr -d com.apple.quarantine ./attention
64+
./attention start
65+
```
66+
5867
## Codex Setup
5968

6069
```sh

0 commit comments

Comments
 (0)