Skip to content

Commit

Permalink
fix: treat RELEASE_NOTES as string
Browse files Browse the repository at this point in the history
So it can handle multiple-lines input.
  • Loading branch information
wzieba committed Sep 20, 2023
1 parent 62e1343 commit e7b1a0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ branding:
icon: 'send'
runs:
using: 'docker'
image: docker://ghcr.io/wzieba/firebase-distribution-github-action:sha-3379bab
# image: docker://ghcr.io/wzieba/firebase-distribution-github-action:sha-3379bab
# Uncomment below for easier debugging
# image: 'Dockerfile'
image: 'Dockerfile'
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ TOKEN_DEPRECATED_WARNING_MESSAGE="⚠ This action will stop working with the nex
if [[ -z ${INPUT_RELEASENOTES} ]]; then
RELEASE_NOTES="$(git log -1 --pretty=short)"
else
RELEASE_NOTES=${INPUT_RELEASENOTES}
RELEASE_NOTES="${INPUT_RELEASENOTES}"
fi

if [[ ${INPUT_RELEASENOTESFILE} ]]; then
Expand Down

0 comments on commit e7b1a0a

Please sign in to comment.