Skip to content

Commit

Permalink
Release ChangeLog generator added
Browse files Browse the repository at this point in the history
  • Loading branch information
yesoreyeram committed Nov 18, 2020
1 parent 999c647 commit b810f54
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: NodeJS Setup
uses: actions/setup-node@v1
with:
Expand Down Expand Up @@ -54,6 +56,11 @@ jobs:
mv dist $GRAFANA_PLUGIN_ID
zip $GRAFANA_PLUGIN_ARTIFACT $GRAFANA_PLUGIN_ID -r
md5sum $GRAFANA_PLUGIN_ARTIFACT > $GRAFANA_PLUGIN_ARTIFACT_CHECKSUM
- name: Changelog
uses: scottbrenner/generate-changelog-action@master
id: Changelog
env:
REPO: ${{ github.repository }}
- name: Create release
id: create_release
uses: actions/create-release@v1
Expand All @@ -62,6 +69,8 @@ jobs:
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body: |
${{ steps.Changelog.outputs.changelog }}
draft: false
prerelease: false
- name: Add plugin to release
Expand Down

0 comments on commit b810f54

Please sign in to comment.