diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dfadb5938..118c38fd6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,14 +17,10 @@ jobs: run: | curl -X POST -d {} ${{ secrets.DEPLOY_HOOK }} - - name: Extract body from changelog - run: | - NEW_VERSION=$(echo '${{ github.ref }}' | sed 's/refs\/tags\/v//') - echo $NEW_VERSION - sed -n -e "/## ${NEW_VERSION}/,/ extractedBody.md - - name: Create Release uses: ncipollo/release-action@v1 with: token: ${{ secrets.GITHUB_TOKEN }} - bodyFile: "extractedBody.md" + draft: true + generateReleaseNotes: true + makeLatest: true