Files
tkmind_go/.github/workflows/release-branches.yml
T
David Katz 71b5ca7b90 Add testing instructions for speech to text (#7185)
Co-authored-by: Douwe Osinga <douwe@squareup.com>
Co-authored-by: Douwe Osinga <douwe@block.xyz>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
2026-02-13 13:51:09 +00:00

36 lines
1.3 KiB
YAML

name: Build goose release candidate
on:
pull_request:
jobs:
bundle-desktop:
if: startsWith(github.head_ref, 'release/')
uses: ./.github/workflows/bundle-desktop.yml
permissions:
id-token: write
contents: read
comment-on-pr:
needs: bundle-desktop
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Comment with download link
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
with:
issue-number: ${{ github.event.number }}
body: |
### macOS ARM64 Desktop App (Apple Silicon)
[📱 Download macOS Desktop App (arm64, unsigned)](https://nightly.link/${{ github.repository }}/actions/runs/${{ github.run_id }}/Goose-darwin-arm64.zip)
**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
**To test speech-to-text**, you also need to codesign the app with the microphone entitlement:
```
codesign --force --deep --sign - --entitlements ui/desktop/entitlements.plist '/path/to/Goose.app'
```