parent
6a6200f9d8
commit
272a458b67
@ -1,24 +1,15 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
set -e |
set -e |
||||||
|
|
||||||
SHA=`git rev-parse --short --verify HEAD` |
SHA=`git rev-parse --short --verify HEAD` |
||||||
|
|
||||||
|
cd dist/apps/remix-ide |
||||||
|
|
||||||
|
git init |
||||||
git config user.name "$COMMIT_AUTHOR" |
git config user.name "$COMMIT_AUTHOR" |
||||||
git config user.email "$COMMIT_AUTHOR_EMAIL" |
git config user.email "$COMMIT_AUTHOR_EMAIL" |
||||||
git checkout --orphan gh-pages |
zip -r remix-$SHA.zip . |
||||||
git rm --cached -r -f . |
git add . |
||||||
echo "# Automatic build" > 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 |
|
||||||
cp -r $FILES_TO_PACKAGE "./" |
|
||||||
rm -rf dist |
|
||||||
ls |
|
||||||
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico" |
|
||||||
# ZIP the whole directory |
|
||||||
zip -r remix-$SHA.zip $FILES_TO_DEPLOY |
|
||||||
# -f is needed because "build" is part of .gitignore |
|
||||||
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-alpha.git gh-pages |
git push -f git@github.com:ethereum/remix-live-alpha.git gh-pages |
||||||
|
@ -1,24 +1,15 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
set -e |
set -e |
||||||
|
|
||||||
SHA=`git rev-parse --short --verify HEAD` |
SHA=`git rev-parse --short --verify HEAD` |
||||||
|
|
||||||
|
cd dist/apps/remix-ide |
||||||
|
|
||||||
|
git init |
||||||
git config user.name "$COMMIT_AUTHOR" |
git config user.name "$COMMIT_AUTHOR" |
||||||
git config user.email "$COMMIT_AUTHOR_EMAIL" |
git config user.email "$COMMIT_AUTHOR_EMAIL" |
||||||
git checkout --orphan gh-pages |
zip -r remix-$SHA.zip . |
||||||
git rm --cached -r -f . |
git add . |
||||||
echo "# Automatic build" > 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 |
|
||||||
cp -r $FILES_TO_PACKAGE "./" |
|
||||||
rm -rf dist |
|
||||||
ls |
|
||||||
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico" |
|
||||||
# ZIP the whole directory |
|
||||||
zip -r remix-$SHA.zip $FILES_TO_DEPLOY |
|
||||||
# -f is needed because "build" is part of .gitignore |
|
||||||
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-beta.git gh-pages |
git push -f git@github.com:ethereum/remix-live-beta.git gh-pages |
||||||
|
@ -1,24 +1,15 @@ |
|||||||
#!/bin/bash |
#!/bin/bash |
||||||
|
|
||||||
set -e |
set -e |
||||||
|
|
||||||
SHA=`git rev-parse --short --verify HEAD` |
SHA=`git rev-parse --short --verify HEAD` |
||||||
|
|
||||||
|
cd dist/apps/remix-ide |
||||||
|
|
||||||
|
git init |
||||||
git config user.name "$COMMIT_AUTHOR" |
git config user.name "$COMMIT_AUTHOR" |
||||||
git config user.email "$COMMIT_AUTHOR_EMAIL" |
git config user.email "$COMMIT_AUTHOR_EMAIL" |
||||||
git checkout --orphan gh-pages |
zip -r remix-$SHA.zip . |
||||||
git rm --cached -r -f . |
git add . |
||||||
echo "# Automatic build" > 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 |
|
||||||
cp -r $FILES_TO_PACKAGE "./" |
|
||||||
rm -rf dist |
|
||||||
ls |
|
||||||
FILES_TO_DEPLOY="assets index.html 404.html *.js *.css favicon.ico" |
|
||||||
# ZIP the whole directory |
|
||||||
zip -r remix-$SHA.zip $FILES_TO_DEPLOY |
|
||||||
# -f is needed because "build" is part of .gitignore |
|
||||||
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 |
||||||
|
Loading…
Reference in new issue