diff --git a/.circleci/config.yml b/.circleci/config.yml index adb8ff8ac2..9a5c799947 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -260,18 +260,18 @@ jobs: - attach_workspace: at: . - run: unzip ./persist/predeploy.zip - - run: | - - SHA=`git rev-parse --short --verify HEAD` - - cd dist/apps/remix-ide - - git init - - git checkout -b gh-pages - - git config user.name "$COMMIT_AUTHOR" - - git config user.email "$COMMIT_AUTHOR_EMAIL" - - zip -r remix-$SHA.zip . - - git add -f . - - git commit -m "Built website from {$SHA}." - - git status - - ls -la + + - run: SHA=`git rev-parse --short --verify HEAD` + - run: cd dist/apps/remix-ide + - run: git init + - run: git checkout -b gh-pages + - run: git config user.name "$COMMIT_AUTHOR" + - run: git config user.email "$COMMIT_AUTHOR_EMAIL" + - run: zip -r remix-$SHA.zip . + - run: git add -f . + - run: git commit -m "Built website from {$SHA}." + - run: git status + - run: ls -la workflows: run_flaky_tests: