Skip to content

Commit

Permalink
Merge pull request #2897 from ethereum/docker_compress1
Browse files Browse the repository at this point in the history
publish only built files
  • Loading branch information
yann300 authored Jun 12, 2020
2 parents 965c5d7 + c3981ec commit 49bd1c2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,8 @@ jobs:
steps:
- checkout
- setup_remote_docker
- run: npm install
- run: npm run build
- run: ./ci/build_and_publish_docker_images.sh

deploy-remix-alpha:
Expand Down
3 changes: 3 additions & 0 deletions ci/build_and_publish_docker_images.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ set -e
# If not staging and master branch are existing
export TAG="$CIRCLE_BRANCH"

mkdir temp_publish_docker
cp -r $FILES_TO_PACKAGE temp_publish_docker

docker login --username $DOCKER_USER --password $DOCKER_PASS
docker-compose build
docker push remixproject/remix-ide:$TAG

0 comments on commit 49bd1c2

Please sign in to comment.