Skip to content
Snippets Groups Projects
Unverified Commit caf0f235 authored by Rodrigo Nascimento's avatar Rodrigo Nascimento
Browse files

Send change log to testflight (#124)

parent 277adfbb
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
git log --format="%cd" -n 14 --date=short | sort -u -r | while read DATE ; do
echo $DATE
GIT_PAGER=cat git log --no-merges --format="- %s" --since="$DATE 00:00:00" --until="$DATE 24:00:00"
echo
done
......@@ -137,6 +137,7 @@ jobs:
- run:
name: Install NPM modules
command: |
rm -rf node_modules
npm install
npm install react-native
......@@ -185,7 +186,7 @@ jobs:
name: Fastlane Tesflight Upload
command: |
cd ios
fastlane pilot upload
fastlane pilot upload --changelog "$(sh ../.circleci/changelog.sh)"
workflows:
version: 2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment