Skip to content
Snippets Groups Projects
Commit be81a231 authored by Aya Morisawa's avatar Aya Morisawa
Browse files

Update release.sh

parent 20e95b85
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
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
cp travis_rsa ~/.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 commit -m "Release build for $TRAVIS_COMMIT"
git push -f git@github.com:syuilo/misskey release
echo "Finished releasing task"
else
echo "Skipping releasing task"
fi
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment