forked from FoundKeyGang/FoundKey
Update release.sh
This commit is contained in:
parent
20e95b856c
commit
be81a231f5
1 changed files with 4 additions and 0 deletions
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then
|
if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then
|
||||||
|
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
|
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
|
cp travis_rsa ~/.ssh/id_rsa
|
||||||
chmod 600 ~/.ssh/id_rsa
|
chmod 600 ~/.ssh/id_rsa
|
||||||
|
@ -13,4 +14,7 @@ if [ $TRAVIS_BRANCH = "master" ] && [ $TRAVIS_PULL_REQUEST != "false" ]; then
|
||||||
git config --global user.name "Aya Morisawa"
|
git config --global user.name "Aya Morisawa"
|
||||||
git commit -m "Release build for $TRAVIS_COMMIT"
|
git commit -m "Release build for $TRAVIS_COMMIT"
|
||||||
git push -f git@github.com:syuilo/misskey release
|
git push -f git@github.com:syuilo/misskey release
|
||||||
|
echo "Finished releasing task"
|
||||||
|
else
|
||||||
|
echo "Skipping releasing task"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue