diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 003d7df..b6eb53b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..f8b46d3 --- /dev/null +++ b/CHANGELOG.md @@ -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). \ No newline at end of file