Skip to content

Instantly share code, notes, and snippets.

@wzieba
Created October 14, 2019 11:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wzieba/7adedc2dd3f1b74a5b6eaec80865e903 to your computer and use it in GitHub Desktop.
Save wzieba/7adedc2dd3f1b74a5b6eaec80865e903 to your computer and use it in GitHub Desktop.
#!/bin/sh
MESSAGE="";
if [[ -z ${INPUT_RELEASENOTES} ]]; then
MESSAGE="$(git log -1 --pretty=short)"
else
MESSAGE=${INPUT_RELEASENOTES}
fi
firebase appdistribution:distribute "$INPUT_FILE" --app "$INPUT_APPID" --token "$INPUT_TOKEN" --groups "$INPUT_GROUPS" --release-notes "$MESSAGE"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment