Extract after_success
This commit is contained in:
parent
5c42dbba8c
commit
55f8d88df9
13
.travis.yml
13
.travis.yml
|
@ -32,15 +32,4 @@ before_script:
|
||||||
- npm run build
|
- npm run build
|
||||||
|
|
||||||
after_success:
|
after_success:
|
||||||
- openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in ./.travis/travis_rsa.enc -out travis_rsa -d
|
- ./.travis/after_success.sh
|
||||||
- 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
|
|
||||||
|
|
|
@ -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
|
Loading…
Reference in New Issue