Send change log to testflight (#124)
This commit is contained in:
parent
277adfbb75
commit
caf0f2354c
|
@ -0,0 +1,7 @@
|
||||||
|
#!/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:
|
- run:
|
||||||
name: Install NPM modules
|
name: Install NPM modules
|
||||||
command: |
|
command: |
|
||||||
|
rm -rf node_modules
|
||||||
npm install
|
npm install
|
||||||
npm install react-native
|
npm install react-native
|
||||||
|
|
||||||
|
@ -185,7 +186,7 @@ jobs:
|
||||||
name: Fastlane Tesflight Upload
|
name: Fastlane Tesflight Upload
|
||||||
command: |
|
command: |
|
||||||
cd ios
|
cd ios
|
||||||
fastlane pilot upload
|
fastlane pilot upload --changelog "$(sh ../.circleci/changelog.sh)"
|
||||||
|
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
|
|
Loading…
Reference in New Issue