Browse Source

👷 update config.yml

main
lamya-rey 6 years ago
parent
commit
5c6318d7e7
  1. 11
      .circleci/config.yml

11
.circleci/config.yml

@ -44,11 +44,10 @@ jobs:
- attach_workspace:
at: /tmp
- run:
name: install netlify
command: sudo npm install netlify-cli -g
- run:
name: Deploy app
command: netlify deploy --prod --auth $NETLIFY_AUTH_TOKEN --dir=/tmp/dist --site $NETLIFY_SITE_ID
name: install netlify and Deploy app
command: |
sudo npm install netlify-cli -g
netlify deploy --prod --auth $NETLIFY_AUTH_TOKEN --dir=/tmp/dist --site $NETLIFY_SITE_ID
docker-build-and-push:
docker:
@ -74,7 +73,7 @@ workflows:
build-deploy:
jobs:
- build
- server-deploy:
- server-build:
requires:
- build
- server-deploy:

Loading…
Cancel
Save