guness / bitrise-step-firebase-app-distribution

Upload your apps to Firebase and sends email to your testers.
MIT License
35 stars 28 forks source link

Can't add release notes that start with a `-` char #40

Open ColtonIdle opened 3 years ago

ColtonIdle commented 3 years ago

The firebase command ends up resolving to

firebase appdistribution:distribute "/bitrise/deploy/app-release.apk" --app "1:123:android:456" --release-notes "- Add feature 1\n- Add feature 2\n" --groups "entirecompany"

which fails with error: unknown option '-A'

After reaching out to firebase support they recommended using

--release-notes="- Add feature 1\n- Add feature 2\n"

which resolved the issue, but I have to script it by hand to do that. Would be nice if the firebase step was updated to support a leading - character in release notes.

leoSTM commented 2 years ago

Yeah, agree, it happened to me as well, and it really took me a while to figure it out as I never thought that is a problem

aclima93 commented 1 year ago

This issue is still prevalent.