Skip to content

Commit

Permalink
Merge pull request #10 from christiangda/develop
Browse files Browse the repository at this point in the history
fix: release name
  • Loading branch information
christiangda committed Dec 2, 2021
2 parents c6d52f4 + 57549d0 commit 309b38b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,17 @@ jobs:
- name: Checkout code
uses: actions/checkout@v2

- name: Set id for github tag version
id: get_tag
run: echo ::set-output name=name::$(echo $GITHUB_REF | cut -d / -f 3)

- name: Create Release
id: create_github_release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
tag_name: ${{ github.ref }}
name: Release ${{ github.ref }}
tag_name: ${{ steps.get_tag.outputs.name }}
name: Release ${{ steps.get_tag.outputs.name }}
body: |
See the file: CHANGELOG.md
draft: false
Expand Down

0 comments on commit 309b38b

Please sign in to comment.