-
Notifications
You must be signed in to change notification settings - Fork 1
feat: Add Homebrew formula update trigger to release workflow #121
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -22,6 +22,7 @@ Thank you for your interest in contributing to DeepWork! This guide will help yo | |||||||||
| - Nix flakes enabled (add `experimental-features = nix-command flakes` to `~/.config/nix/nix.conf`) | ||||||||||
| - **direnv** (optional) - For automatic environment activation when using Nix flakes | ||||||||||
| - **uv** - Modern Python package installer (included in Nix environment) | ||||||||||
| - **Homebrew** (optional) - For easy installation on macOS/Linux via `brew install` | ||||||||||
|
||||||||||
| - **Homebrew** (optional) - For easy installation on macOS/Linux via `brew install` | |
| - **Homebrew** (optional) - For easy installation on macOS/Linux via: | |
| - `brew tap unsupervisedcom/deepwork` | |
| - `brew install deepwork` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR description says the workflow requires a
HOMEBREW_TAP_TOKENsecret, but the workflow actually usessecrets.DEPLOYER_CI_TOKEN. This mismatch will cause the job to fail (or require a different secret) and is confusing for maintainers. Align the workflow to useHOMEBREW_TAP_TOKENor update the PR description (and any docs) to referenceDEPLOYER_CI_TOKENconsistently.