Update more instructions (#7305)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
@@ -91,9 +91,25 @@ jobs:
|
|||||||
body: |
|
body: |
|
||||||
### macOS Intel Desktop App (x64)
|
### macOS Intel Desktop App (x64)
|
||||||
|
|
||||||
[💻 Download macOS Desktop App (Intel x64, signed)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-x64.zip)
|
[💻 Download macOS Desktop App (Intel x64, unsigned)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-x64.zip)
|
||||||
|
|
||||||
**Instructions:**
|
**Instructions:**
|
||||||
After downloading, unzip the file and drag the goose.app to your Applications folder. The app is signed and notarized for macOS.
|
|
||||||
|
The easiest way is to just run the following script:
|
||||||
This link is provided by nightly.link and will work even if you're not logged into GitHub.
|
|
||||||
|
`./scripts/pre-release.sh`
|
||||||
|
|
||||||
|
script which will download the latest release (or you can specify the release you need), does the
|
||||||
|
unzip, xattr to get it out of quarantine and signs it.
|
||||||
|
|
||||||
|
If you need to do this manually:
|
||||||
|
|
||||||
|
* Download the file
|
||||||
|
* Unzip
|
||||||
|
* run `xattr -r -d com.apple.quarantine '/path/to/Goose.app'`
|
||||||
|
* optionally run `codesign --force --deep --sign - --entitlements ui/desktop/entitlements.plist '/path/to/Goose.app'`
|
||||||
|
* start the app
|
||||||
|
|
||||||
|
The signing step is only needed if you do something that uses mac entitlements like speech to text
|
||||||
|
|
||||||
|
This link is provided by nightly.link and will work even if you're not logged into GitHub.
|
||||||
|
|||||||
@@ -27,9 +27,20 @@ jobs:
|
|||||||
[📱 Download macOS Desktop App (arm64, unsigned)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-arm64.zip)
|
[📱 Download macOS Desktop App (arm64, unsigned)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-arm64.zip)
|
||||||
|
|
||||||
**Instructions:**
|
**Instructions:**
|
||||||
After downloading, unzip the file and drag the goose.app to a location you prefer. The app is unsigned, so to run it run `xattr -r -d com.apple.quarantine '/path/to/goose.app'` and then open the app
|
|
||||||
|
The easiest way is to just run the following script:
|
||||||
**To test speech-to-text**, you also need to codesign the app with the microphone entitlement:
|
|
||||||
```
|
`./scripts/pre-release.sh`
|
||||||
codesign --force --deep --sign - --entitlements ui/desktop/entitlements.plist '/path/to/Goose.app'
|
|
||||||
```
|
script which will download the latest release (or you can specify the release you need), does the
|
||||||
|
unzip, xattr to get it out of quarantine and signs it.
|
||||||
|
|
||||||
|
If you need to do this manually:
|
||||||
|
|
||||||
|
* Download the file
|
||||||
|
* Unzip
|
||||||
|
* run `xattr -r -d com.apple.quarantine '/path/to/Goose.app'`
|
||||||
|
* optionally run `codesign --force --deep --sign - --entitlements ui/desktop/entitlements.plist '/path/to/Goose.app'`
|
||||||
|
* start the app
|
||||||
|
|
||||||
|
The signing step is only needed if you do something that uses mac entitlements like speech to text
|
||||||
|
|||||||
Reference in New Issue
Block a user