Skip to content

Commit

Permalink
feat: include change logs in releases
Browse files Browse the repository at this point in the history
  • Loading branch information
eeriemyxi committed Oct 22, 2024
1 parent 1867a0f commit b897a74
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.4.2",
"version": "0.4.3",
"tasks": {
"start": "deno fmt; deno --check --allow-all src/main.ts",
"install": "deno install -gf --name cela --allow-all src/main.ts"
Expand All @@ -14,4 +14,4 @@
"fmt": {
"indentWidth": 4
}
}
}

0 comments on commit b897a74

Please sign in to comment.