-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: include change logs in releases
- Loading branch information
Showing
2 changed files
with
14 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,16 +16,28 @@ jobs: | |
uses: denoland/setup-deno@v2 | ||
with: | ||
deno-version: v2.x | ||
- name: Setup Python | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: Setup Fish Shell | ||
uses: fish-actions/[email protected] | ||
|
||
- name: Generate Release Notes | ||
run: | | ||
pip install git-cliff | ||
git-cliff -l -o RELEASE-NOTES.md | ||
echo "RELEASE-NOTES.md:\n" | ||
cat RELEASE-NOTES.md | ||
- name: Build Binaries | ||
run: chmod +x build.fish && ./build.fish | ||
|
||
- name: Upload Binaries to Release | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
body_path: RELEASE-NOTES.md | ||
files: | | ||
bin/*.bin | ||
bin/*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters