diff --git a/.github/workflows/BuildForWindows.yml b/.github/workflows/BuildForWindows.yml index 07cb3d08..bdd51ee6 100644 --- a/.github/workflows/BuildForWindows.yml +++ b/.github/workflows/BuildForWindows.yml @@ -67,20 +67,6 @@ jobs: - name: List output files run: Get-ChildItem -Path ./publish/app -Force - - - name: Create release notes - id: create-release-notes - run: - echo "## Last 10 commits:" - git log -n 10 --format="%s (%h) %ad" --date=short - echo "" - echo "## Contributors:" - git shortlog -sn --no-merges - - - name: Get contributors - id: get-contributors - run: | - git shortlog -sn --no-merges - name: Create Release id: create_release uses: actions/create-release@v1 @@ -91,11 +77,6 @@ jobs: tag_name: ${{ github.ref }} release_name: Release ${{ github.ref }} draft: false - body: | - ## Last 10 commits: - ${{ get-contributors.outputs }} - ## In this version - ${{ steps.create-release-notes.outputs.release-notes }} prerelease: ${{ contains(github.ref, 'alpha') }}