Skip to content
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,9 @@ jobs:
name: Publish GitHub Release
runs-on: ubuntu-latest
needs: build
permissions:
contents: write
actions: write
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -171,3 +174,15 @@ jobs:
files: |
artifacts/**/*

# Releases created with GITHUB_TOKEN do not emit release events to other workflows.
# Dispatch the tap updater explicitly so Homebrew stays current.
- name: Dispatch Homebrew tap update
env:
GH_TOKEN: ${{ github.token }}
run: |
set -euo pipefail
version="${GITHUB_REF_NAME#v}"
gh workflow run update-homebrew-tap.yml \
--repo "${GITHUB_REPOSITORY}" \
-f "version=${version}"

Loading