Permalink
Please sign in to comment.
@@ -0,0 +1,24 @@ | |||
version: 2 | |||
jobs: | |||
build: | |||
docker: | |||
- image: circleci/python:3.6.1 | |||
working_directory: ~/repo | |||
steps: | |||
- run: | |||
name: Trigger Netlify build | |||
command: | | |||
curl -X POST -d {} https://api.netlify.com/build_hooks/$NETLIFY_KEY | |||
workflows: | |||
version: 2 | |||
cron: | |||
triggers: | |||
- schedule: | |||
cron: "0 0,12 * * *" | |||
filters: | |||
branches: | |||
only: | |||
- master | |||
jobs: | |||
- build |
0 comments on commit
0936244