From 66e783838e01313cfa323dbac33a947beb563c51 Mon Sep 17 00:00:00 2001 From: Eugene Date: Tue, 11 Jun 2024 15:26:35 +0300 Subject: [PATCH] fix --- .github/workflows/BuildForWindows.yml | 19 ------------------- 1 file changed, 19 deletions(-) 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') }}