Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
asv-soft-u03 committed Jun 11, 2024
1 parent 5951b2a commit 8e47d06
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/BuildForWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,6 @@ jobs:
- name: List output files
run: Get-ChildItem -Path ./publish/app -Force

- name: Get contributors
run:
git shortlog -sn --no-merges

- name: Create release notes
id: create-release-notes
Expand All @@ -79,7 +76,11 @@ jobs:
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
Expand All @@ -92,12 +93,9 @@ jobs:
draft: false
body: |
## Last 10 commits:
gh log -n 10 --format="%s (%h) %ad" --date=short
echo ""
echo "## Contributors:"
gh shortlog -sn --no-merges
${{ get-contributors.outputs }}
## In this version
${{ steps.create-release-notes.outputs.release-notes }}
prerelease: ${{ contains(github.ref, 'alpha') }}


Expand Down

0 comments on commit 8e47d06

Please sign in to comment.