Commit 5f4d67b7 authored by ioedeveloper's avatar ioedeveloper

Remix live deploy config

parent 813bcc5d
...@@ -11,10 +11,13 @@ git rm --cached -r -f . ...@@ -11,10 +11,13 @@ git rm --cached -r -f .
echo "# Automatic build" > README.md echo "# Automatic build" > README.md
echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md echo "Built website from \`$SHA\`. See https://github.com/ethereum/remix-ide/ for details." >> README.md
echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md echo "To use an offline copy, download \`remix-$SHA.zip\`." >> README.md
cp -r $FILES_TO_PACKAGE "./"
rm -rf dist
FILES_TO_DEPLOY="assets index.html main.js polyfills.js runtime.js vendor.js"
# ZIP the whole directory # ZIP the whole directory
zip -r remix-$SHA.zip $FILES_TO_PACKAGE zip -r remix-$SHA.zip $FILES_TO_DEPLOY
# -f is needed because "build" is part of .gitignore # -f is needed because "build" is part of .gitignore
git add -f $FILES_TO_PACKAGE remix-$SHA.zip git add -f $FILES_TO_DEPLOY remix-$SHA.zip
git commit -m "Built website from {$SHA}." git commit -m "Built website from {$SHA}."
git push -f git@github.com:ethereum/remix-live.git gh-pages git push -f git@github.com:ethereum/remix-live.git gh-pages
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