mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
17 lines
360 B
YAML
17 lines
360 B
YAML
|
name: Release
|
||
|
on:
|
||
|
push:
|
||
|
tags: 'v*'
|
||
|
|
||
|
jobs:
|
||
|
homebrew:
|
||
|
name: Bump Homebrew formula
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- uses: mislav/bump-homebrew-formula-action@v1.4
|
||
|
if: "!contains(github.ref, '-')" # skip prereleases
|
||
|
with:
|
||
|
formula-name: rbenv
|
||
|
env:
|
||
|
COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }}
|