|
|
|
@ -17,16 +17,4 @@ zip -r remix-$SHA.zip $FILES_TO_PACKAGE |
|
|
|
|
git add -f $FILES_TO_PACKAGE remix-$SHA.zip |
|
|
|
|
git commit -m "Built website from {$SHA}." |
|
|
|
|
|
|
|
|
|
ENCRYPTED_KEY_VAR2="encrypted_${ENCRYPTION_LABEL2}_key" |
|
|
|
|
ENCRYPTED_IV_VAR2="encrypted_${ENCRYPTION_LABEL2}_iv" |
|
|
|
|
ENCRYPTED_KEY2=${!ENCRYPTED_KEY_VAR2} |
|
|
|
|
ENCRYPTED_IV2=${!ENCRYPTED_IV_VAR2} |
|
|
|
|
|
|
|
|
|
touch deploy_key_remix-live |
|
|
|
|
chmod 600 deploy_key_remix-live |
|
|
|
|
openssl aes-256-cbc -K $ENCRYPTED_KEY2 -iv $ENCRYPTED_IV2 -in ci/deploy_key_remix-live.enc -out deploy_key_remix-live -d |
|
|
|
|
eval `ssh-agent -s` |
|
|
|
|
|
|
|
|
|
git commit --amend -m "Built website from {$SHA}." |
|
|
|
|
ssh-add deploy_key_remix-live |
|
|
|
|
git push -f git@github.com:ethereum/remix-live.git gh-pages |
|
|
|
|