1
0
mirror of https://github.com/deadc0de6/dotdrop.git synced 2026-02-06 18:22:59 +00:00
Files
dotdrop/.github/workflows/homebrew-manual.yml
2023-01-13 14:29:13 +01:00

23 lines
632 B
YAML
Vendored

name: Manual 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
tag-name: ${{ github.event.inputs.tag-name }}
download-url: https://github.com/deadc0de6/dotdrop/archive/${{ github.event.inputs.tag-name }}.tar.gz
env:
COMMITTER_TOKEN: ${{secrets.HOMEBREW_FORMULA_GH_TOKEN}}