Skip to content

Commit

Permalink
Merge pull request #107 from Lyr3x/use-active-action
Browse files Browse the repository at this point in the history
Use better release action
  • Loading branch information
Lyr3x committed Jan 18, 2022
2 parents e50afb6 + 0071c5c commit f81fc03
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ jobs:
export TAG=$(head -1 CHANGELOG.tmp | cut -d' ' -f2)
echo "TAG=$TAG" >> $GITHUB_ENV
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
uses: ncipollo/release-action@v1
with:
tag_name: ${{ env.TAG }}
release_name: ${{ env.TAG }}
body_path: CHANGELOG.tmp
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.TAG }}
name: ${{ env.TAG }}
bodyFile: "CHANGELOG.tmp"
draft: false
prerelease: false
generateReleaseNotes: true

0 comments on commit f81fc03

Please sign in to comment.