mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
dd7bf7c1c1
remove devDependencies from package.json. resolve #495.
18 lines
708 B
Bash
18 lines
708 B
Bash
#!/bin/bash
|
|
|
|
echo "Starting releasing task"
|
|
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
|
|
node ./.travis/shapeup.js
|
|
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
|
|
echo "Finished releasing task"
|