Skip to content

Commit

Permalink
changelog file added
Browse files Browse the repository at this point in the history
  • Loading branch information
ritalarina committed Sep 27, 2024
1 parent 29c6aa9 commit 0755e29
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,13 @@ jobs:
with:
name: my-electron-app
path: release-builds/

- name: Extract release notes from CHANGELOG.md
id: notes
run: |
# Extract the first section from CHANGELOG.md
NOTES=$(awk '/^## /{if (p) exit; p=1} p' CHANGELOG.md)
echo "::set-output name=notes::$NOTES"
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## v0.1.1
- App renamed and automatic deployment set up.

## v0.1.0
- First release with core functionality (BMR and caloric intake calculator).

0 comments on commit 0755e29

Please sign in to comment.