remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/apps/remix-ide/ci/deploy_from_travis_remix-te...

17 lines
216 B

#!/bin/bash
set -e
cd dist
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
zip -r remix-$1.zip .
git add .
git commit -m "Built website from {$1}."
ls -la
git status