Fix ui docker builds

This commit is contained in:
Tom Gallacher 2017-01-05 10:38:53 +00:00
parent 86f9aa39e7
commit d0e70a54b0
2 changed files with 3 additions and 4 deletions

View File

@ -32,9 +32,8 @@ deployment:
branch: master
commands:
- ./bin/docker-login
- make -C ui publish | sed '/NPM_TOKEN/d'
- make -j2 build
- make -j2 push
- make -j2 build | sed '/NPM_TOKEN/d'
- make -j2 push | sed '/NPM_TOKEN/d'
- ./bin/deploy
## Custom notifications

View File

@ -4,7 +4,7 @@ ARG CIRCLE_BUILD_NUM
ENV NPM_TOKEN ${NPM_TOKEN}
ENV CIRCLE_BUILD_NUM ${CIRCLE_BUILD_NUM}
RUN echo -e "//registry.npmjs.org/:_authToken=${NPM_TOKEN}" > .npmrc
RUN NODE_ENV=production make compile
RUN make install
RUN NODE_ENV=production make compile
RUN npm version 0.0.1-${CIRCLE_BUILD_NUM}
RUN npm publish --tag alpha --access public