test deploy

pull/3509/head
filip mertens 2 years ago
parent 3140ed821b
commit bcabba1364
  1. 1
      .circleci/config.yml
  2. 11
      apps/remix-ide/ci/deploy_from_travis_remix-test.sh

@ -260,6 +260,7 @@ jobs:
- attach_workspace:
at: .
- run: unzip ./persist/predeploy.zip
- run: ./apps/remix-ide/ci/deploy_from_travis_remix-test.sh
workflows:
run_flaky_tests:

@ -1,16 +1,21 @@
#!/bin/bash
set -e
SHA=`git rev-parse --short --verify HEAD`
cd dist
cd dist/apps/remix-ide
git init
git config user.name "$COMMIT_AUTHOR"
git config user.email "$COMMIT_AUTHOR_EMAIL"
zip -r remix-$1.zip .
zip -r remix-$SHA.zip .
git add .
git commit -m "Built website from {$1}."
git status
git commit -m "Built website from {$SHA}."
ls -la
git status

Loading…
Cancel
Save