This repository has been archived on 2022-01-02. You can view files and clone it, but cannot push or open issues/pull-requests.
AriaNg/scripts/publish_dailybuild.sh

21 lines
538 B
Bash
Raw Normal View History

2016-07-10 13:02:25 +02:00
if [ $CI == "true" ] && [ $CIRCLE_BRANCH == "master" ]; then
2017-02-09 18:36:15 +01:00
git config --global user.name "CircleCI";
git config --global user.email "CircleCI";
2016-08-08 16:26:33 +02:00
2018-07-08 19:31:07 +02:00
ssh -o StrictHostKeyChecking=no git@github.com
2017-02-09 18:36:15 +01:00
echo "Publishing daily build...";
2018-07-08 19:21:16 +02:00
git clone git@github.com:mayswind/AriaNg-DailyBuild.git $HOME/AriaNg-DailyBuild/
2016-08-01 17:52:41 +02:00
2018-07-08 18:59:55 +02:00
rm -rf $HOME/AriaNg-DailyBuild/*
cp dist/* $HOME/AriaNg-DailyBuild/ -r;
2016-08-01 17:52:41 +02:00
2018-07-08 18:59:55 +02:00
cd $HOME/AriaNg-DailyBuild/;
2016-08-01 17:52:41 +02:00
2016-07-16 19:28:39 +02:00
git add -A;
2016-07-16 16:41:33 +02:00
git commit -a -m "daily build #$CIRCLE_SHA1";
2017-03-20 05:38:10 +01:00
git push origin master;
2017-02-09 18:36:15 +01:00
echo "Done.";
2016-08-02 18:03:00 +02:00
fi