mirror of
https://github.com/deadc0de6/dotdrop.git
synced 2026-02-07 04:10:41 +00:00
21 lines
461 B
YAML
Vendored
21 lines
461 B
YAML
Vendored
name: Release to Homebrew
|
|
on:
|
|
workflow_run:
|
|
workflows: ["Release to PyPI"]
|
|
types:
|
|
- completed
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag-name:
|
|
description: 'Tag to bump the formula to'
|
|
required: true
|
|
jobs:
|
|
homebrew-core:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: mislav/bump-homebrew-formula-action@v2
|
|
with:
|
|
formula-name: dotdrop
|
|
env:
|
|
COMMITTER_TOKEN: ${{secrets.HOMEBREW_FORMULA_GH_TOKEN}}
|