publish only built files

pull/262/head
yann300 4 years ago
parent 965c5d754f
commit c3981ec269
  1. 2
      .circleci/config.yml
  2. 3
      ci/build_and_publish_docker_images.sh

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

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