From ccd0c396a579e9eeb25187ade64f9e2b712f2f9d Mon Sep 17 00:00:00 2001 From: Ron S Date: Mon, 16 Aug 2021 18:05:30 -0400 Subject: [PATCH] docs(readme): Switch release action to ncipollo/release-action --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 36a16a4..012bd3d 100755 --- a/README.md +++ b/README.md @@ -107,11 +107,8 @@ jobs: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - name: Create GitHub Release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + uses: ncipollo/release-action@v1 with: - release_name: Release ${{ steps.publish_tag.outputs.tag_name }} - tag_name: ${{ steps.publish_tag.outputs.tag_name }} - body_path: RELEASE_BODY.md + bodyFile: "RELEASE_BODY.md" + token: ${{ secrets.GITHUB_TOKEN }} ```