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
7 changes: 6 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,4 +96,9 @@ jobs:
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TOKEN: ${{ secrets.HOMEBREW_TOKEN }}
HOMEBREW_TOKEN: ${{ secrets.HOMEBREW_TOKEN }}
# Injected via -X ldflag into src/internal/telemetry.APIKey by
# .goreleaser.yaml. Without this env wiring the ldflag resolves
# to the empty string and shipped binaries silently no-op every
# Capture call — telemetry would be dead code for release users.
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
6 changes: 6 additions & 0 deletions .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,3 +79,9 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TOKEN: ${{ secrets.HOMEBREW_TOKEN }}
# Injected via -X ldflag into src/internal/telemetry.APIKey by
# .goreleaser.preview.yaml. Without this env wiring the ldflag
# resolves to the empty string and preview binaries can't fire
# telemetry — keep parity with the stable channel so opted-in
# preview users contribute the same signal.
POSTHOG_API_KEY: ${{ secrets.POSTHOG_API_KEY }}
Loading