Skip to content

Commit

Permalink
Update release name and heading format in release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSasser committed Nov 16, 2021
1 parent 8c4ac24 commit 501c7e4
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,14 +62,19 @@ jobs:
--output=chagelog_latest.md
--from rst
--to markdown
--markdown-headings=atx
chagelog_latest.rst
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::$(echo $GITHUB_REF | cut -d / -f 3)

- name: Create Release
uses: softprops/action-gh-release@v1
with:
prerelease: false
draft: false
name: Release ${{ github.ref }}
name: Release ${{ steps.get_version.outputs.VERSION }}
body_path: chagelog_latest.md
files: matrixctl.zip

Expand Down

0 comments on commit 501c7e4

Please sign in to comment.