Skip to content

Commit

Permalink
fix: update create release action
Browse files Browse the repository at this point in the history
  • Loading branch information
ElderMatt committed Aug 18, 2023
1 parent 249ae9e commit 077b153
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,10 @@ jobs:
echo changes=$changelog >> $GITHUB_OUTPUT
- if: "contains(github.event.head_commit.message, 'chore(release)')"
name: Create GitHub release
uses: actions/create-release@v1
uses: ncipollo/release-action@v1.12.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.git_tag.outputs.tag }}
release_name: Release ${{ steps.git_tag.outputs.tag }}
tag: ${{ steps.git_tag.outputs.tag }}
name: Release ${{ steps.git_tag.outputs.tag }}
body: ${{ steps.git_tag.outputs.changes }}

0 comments on commit 077b153

Please sign in to comment.