This commit is contained in:
Aya Morisawa 2017-02-28 20:44:03 +09:00
parent b4c7005b91
commit c8fbdc9437
5 changed files with 5 additions and 5 deletions

View file

@ -27,17 +27,17 @@ services:
before_script:
- mkdir ./.config
- cp ./.ci-files/default.yml ./.config
- cp ./.ci-files/test.yml ./.config
- cp ./.travis/default.yml ./.config
- cp ./.travis/test.yml ./.config
- npm run build
after_success:
- openssl aes-256-cbc -K $encrypted_ceda82069128_key -iv $encrypted_ceda82069128_iv -in .travis_rsa.enc -out .travis_rsa -d
- cp .travis_rsa ~/.ssh/id_rsa
- 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 .gitignore-release .gitignore
- 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"