diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index fb80757..044d0ff 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -35,12 +35,12 @@ jobs: - name: Create Release if: "contains(github.ref, steps.package.outputs.version)" # only works if tag contains correct package.version - uses: actions/create-release@v1 + uses: softprops/action-gh-release@v3 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token with: tag_name: ${{ github.ref }} - release_name: Release ${{ github.ref }} + name: Release ${{ github.ref }} body: ${{ github.event.head_commit.message }} draft: false prerelease: false