Skip to content
This repository has been archived by the owner on Aug 19, 2024. It is now read-only.

Commit

Permalink
auto-bump-homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
mariogarridopt committed Jul 18, 2023
1 parent ef3f3ab commit 9401032
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/bump-homebrew-formula.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
name: Bump Homebrew formula

on:
push:
tags: 'v*'

push:
tags:
- "v*"
workflow_dispatch:

jobs:
homebrew:
name: Bump Homebrew formula
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/manual-homebrew-deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Manuealy Bump Homebrew formula

on:
workflow_dispatch:
inputs:
tag-name:
description: 'The git tag name to bump the formula to'
required: true

jobs:
homebrew:
name: Bump Homebrew formula
runs-on: ubuntu-latest
steps:
- uses: mislav/bump-homebrew-formula-action@v2
with:
formula-name: awselect
tag-name: ${{ github.event.inputs.tag-name }}
download-url: https://github.com/mariogarridopt/homebrew-awsume-fzf/archive/refs/tags/${{ github.event.inputs.tag-name }}.tar.gz
env:
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}

0 comments on commit 9401032

Please sign in to comment.