From 9e4b0b927ca14b651a5ec00f097ef3aac6a6874e Mon Sep 17 00:00:00 2001 From: Ron S Date: Mon, 16 Aug 2021 17:58:09 -0400 Subject: [PATCH] build(actions): Fix publish script --- .github/workflows/publish.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index cfd99e6..9298208 100755 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -39,10 +39,7 @@ 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 }}