Skip to content

Commit

Permalink
[#493] Generate release notes when uploading builds to Firebase/TestF…
Browse files Browse the repository at this point in the history
…light
  • Loading branch information
markgravity committed Dec 27, 2024
1 parent c44cb6c commit d8a7bba
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test_upload_build_to_firebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,10 @@ jobs:

- name: Create Release Note
run: |
echo "Here is: "
echo "RELEASE_NOTES="$((git log -1 --merges | grep "\[") | grep . && echo "" || echo $(git log -1 --merges --format=%B))""
echo "RELEASE_NOTES<<EOF" >> $GITHUB_ENV
echo "$(git log -1 | grep -o "\[.*")" >> $GITHUB_ENV
echo "$((git log -1 --merges | grep "\[") | grep . && echo "" || echo $(git log -1 --merges --format=%B))" >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
- name: Install SSH key
Expand Down

0 comments on commit d8a7bba

Please sign in to comment.