Commit 268b858b authored by yann300's avatar yann300

remove deploy to browser solidity gh pages

parent 7013ed1e
...@@ -17,24 +17,15 @@ zip -r remix-$SHA.zip $FILES_TO_PACKAGE ...@@ -17,24 +17,15 @@ zip -r remix-$SHA.zip $FILES_TO_PACKAGE
git add -f $FILES_TO_PACKAGE remix-$SHA.zip git add -f $FILES_TO_PACKAGE remix-$SHA.zip
git commit -m "Built website from {$SHA}." git commit -m "Built website from {$SHA}."
ENCRYPTED_KEY_VAR1="encrypted_${ENCRYPTION_LABEL1}_key"
ENCRYPTED_IV_VAR1="encrypted_${ENCRYPTION_LABEL1}_iv"
ENCRYPTED_KEY1=${!ENCRYPTED_KEY_VAR1}
ENCRYPTED_IV1=${!ENCRYPTED_IV_VAR1}
ENCRYPTED_KEY_VAR2="encrypted_${ENCRYPTION_LABEL2}_key" ENCRYPTED_KEY_VAR2="encrypted_${ENCRYPTION_LABEL2}_key"
ENCRYPTED_IV_VAR2="encrypted_${ENCRYPTION_LABEL2}_iv" ENCRYPTED_IV_VAR2="encrypted_${ENCRYPTION_LABEL2}_iv"
ENCRYPTED_KEY2=${!ENCRYPTED_KEY_VAR2} ENCRYPTED_KEY2=${!ENCRYPTED_KEY_VAR2}
ENCRYPTED_IV2=${!ENCRYPTED_IV_VAR2} ENCRYPTED_IV2=${!ENCRYPTED_IV_VAR2}
touch deploy_key
touch deploy_key_remix-live touch deploy_key_remix-live
chmod 600 deploy_key deploy_key_remix-live chmod 600 deploy_key deploy_key_remix-live
openssl aes-256-cbc -K $ENCRYPTED_KEY1 -iv $ENCRYPTED_IV1 -in ci/deploy_key.enc -out deploy_key -d
openssl aes-256-cbc -K $ENCRYPTED_KEY2 -iv $ENCRYPTED_IV2 -in ci/deploy_key_remix-live.enc -out deploy_key_remix-live -d 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` eval `ssh-agent -s`
ssh-add deploy_key
git push -f git@github.com:ethereum/browser-solidity.git gh-pages
ssh-add -D
echo -n "remix.ethereum.org" > CNAME echo -n "remix.ethereum.org" > CNAME
git add CNAME git add CNAME
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment