Skip to content

Commit

Permalink
version - bump to
Browse files Browse the repository at this point in the history
  • Loading branch information
shdwmtr committed Jul 15, 2024
1 parent 1368508 commit d111841
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
11 changes: 10 additions & 1 deletion .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,14 @@ jobs:
Write-Output $releaseBody
echo "::set-output name=release_body::$releaseBody"
- name: conventional changelog action
id: changelog
# https://github.com/TriPSs/conventional-changelog-action
uses: TriPSs/conventional-changelog-action@latest
with:
# you can also create separate token to trace action
github-token: "${{ secrets.GITHUB_TOKEN }}"

- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
Expand All @@ -178,7 +186,8 @@ jobs:
with:
tag_name: ${{ steps.read_version.outputs.version }}
release_name: Release ${{ steps.read_version.outputs.version }}
body_path: ./scripts/release-notes.md
# body_path: ./scripts/release-notes.md
body: ${{steps.changelog.outputs.clean_changelog}}
draft: true
prerelease: false

Expand Down
5 changes: 0 additions & 5 deletions scripts/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +0,0 @@
## What's Changed

* Auto Updater for new version
* Bug fixes on Millennium startup
* Fix Steam crash on PC Shutdown?

0 comments on commit d111841

Please sign in to comment.