publish only built files

pull/11/head
yann300 5 years ago committed by ioedeveloper
parent abf5e6d92d
commit aaad739445
  1. 2
      .circleci/config.yml
  2. 3
      ci/build_and_publish_docker_images.sh

@ -166,6 +166,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:

@ -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

Loading…
Cancel
Save