Last active
February 8, 2019 21:58
-
-
Save maciejkorsan/c20e1a250a41b1840ec75f98a3ec664f to your computer and use it in GitHub Desktop.
CircleCI GitHub - FTP deploy config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: 2 | |
jobs: | |
build: | |
docker: | |
- image: circleci/node:latest | |
steps: | |
- checkout | |
- run: npm install | |
- run: npx gulp build | |
- run: node .circleci/deploy.js | |
- run: echo "WE'RE ONLINE" | |
workflows: | |
version: 2 | |
deploy: | |
jobs: | |
- build: | |
filters: | |
branches: | |
only: | |
- master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment