summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAya Morisawa <AyaMorisawa4869@gmail.com>2017-03-01 17:46:27 +0900
committerAya Morisawa <AyaMorisawa4869@gmail.com>2017-03-01 17:54:26 +0900
commit55f8d88df9d1cac60595a9555167bf47e29b4d2c (patch)
tree465ecda933128f6dae42e70532d1aec8bad70c54
parentUpdate README.md (diff)
downloadmisskey-55f8d88df9d1cac60595a9555167bf47e29b4d2c.tar.gz
misskey-55f8d88df9d1cac60595a9555167bf47e29b4d2c.tar.bz2
misskey-55f8d88df9d1cac60595a9555167bf47e29b4d2c.zip
Extract after_success
-rw-r--r--.travis.yml13
-rw-r--r--.travis/after_success.sh16
2 files changed, 17 insertions, 12 deletions
diff --git a/.travis.yml b/.travis.yml
index 74886b927b..fb9b97c9d5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -32,15 +32,4 @@ before_script:
- npm run build
after_success:
- - openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in ./.travis/travis_rsa.enc -out travis_rsa -d
- - cp travis_rsa ~/.ssh/id_rsa
- - chmod 600 ~/.ssh/id_rsa
- - echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
- - git checkout -b release
- - cp -f ./.travis/.gitignore-release .gitignore
- - git add --all
- - git rm --cached `git ls-files --full-name -i --exclude-standard`
- - git config --global user.email "AyaMorisawa4869@gmail.com"
- - git config --global user.name "Aya Morisawa"
- - git commit -m "Release build for $TRAVIS_COMMIT"
- - if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then git push -f git@github.com:syuilo/misskey release; fi
+ - ./.travis/after_success.sh
diff --git a/.travis/after_success.sh b/.travis/after_success.sh
new file mode 100644
index 0000000000..2b94756b39
--- /dev/null
+++ b/.travis/after_success.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then
+ openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in ./.travis/travis_rsa.enc -out travis_rsa -d
+ cp travis_rsa ~/.ssh/id_rsa
+ chmod 600 ~/.ssh/id_rsa
+ echo -e "Host github.com\n\tStrictHostKeyChecking no\n" >> ~/.ssh/config
+ git checkout -b release
+ cp -f ./.travis/.gitignore-release .gitignore
+ git add --all
+ git rm --cached `git ls-files --full-name -i --exclude-standard`
+ git config --global user.email "AyaMorisawa4869@gmail.com"
+ git config --global user.name "Aya Morisawa"
+ git commit -m "Release build for $TRAVIS_COMMIT"
+ git push -f git@github.com:syuilo/misskey release
+fi