Browse Source

Add Github action for release

pull/287/head
Gildas Cuisinier 6 years ago committed by GitHub
parent
commit
aec2eb345d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 15
      .github/workflows/on-release.yml

15
.github/workflows/on-release.yml

@ -0,0 +1,15 @@
name: New release created
on:
release:
types:
- created
jobs:
update-homebrew:
name: Update homebrew formula
runs-on: ubuntu-latest
steps:
- uses: mislav/bump-homebrew-formula-action@v1
with: { formula-name: jenv }
env:
COMMITTER_TOKEN: ${{ secrets.BREW_TOKEN }}
Loading…
Cancel
Save