Merge branch 'release/1.13.0' #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: release | |
on: | |
push: | |
tags: | |
- "*.*.*" | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Get release notes from CHANGELOG.md | |
uses: yashanand1910/standard-release-notes@v1.2.1 | |
id: get_release_notes | |
with: | |
version: ${{ github.ref }} | |
- name: Release to github | |
uses: softprops/action-gh-release@v1 | |
with: | |
body: ${{ steps.get_release_notes.outputs.release_notes }} |