Skip to content

Commit

Permalink
Add an Actions workflow to update releases using chandler
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 28, 2021
1 parent 0451df7 commit dca0b4f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/update-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Update releases

on:
- push

jobs:
chandler:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v1
- name: Set up Ruby 2.7
uses: actions/setup-ruby@v1
with:
ruby-version: 2.7
- name: Install chandler gem
run: gem install chandler
- name: Update releases messages
run: chandler push --github="$GITHUB_REPOSITORY" --changelog="CHANGELOG.md"
env:
CHANDLER_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dca0b4f

Please sign in to comment.