Skip to content

Instantly share code, notes, and snippets.

@maciejkorsan
Last active February 8, 2019 21:58
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save maciejkorsan/c20e1a250a41b1840ec75f98a3ec664f to your computer and use it in GitHub Desktop.
Save maciejkorsan/c20e1a250a41b1840ec75f98a3ec664f to your computer and use it in GitHub Desktop.
CircleCI GitHub - FTP deploy config
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