mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
21 lines
470 B
YAML
21 lines
470 B
YAML
# This workflow auto-publishes Reth to external package managers such as
|
|
# Homebrew when a release is published.
|
|
|
|
name: release externally
|
|
|
|
on:
|
|
release:
|
|
types: [published]
|
|
|
|
jobs:
|
|
release-homebrew:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Update Homebrew formula
|
|
uses: dawidd6/action-homebrew-bump-formula@v4
|
|
with:
|
|
token: ${{ secrets.HOMEBREW }}
|
|
no_fork: true
|
|
tap: paradigmxyz/brew
|
|
formula: reth
|