Skip to content

Instantly share code, notes, and snippets.

@littlebobert
Last active September 19, 2018 22:44
Show Gist options
  • Save littlebobert/7de3d06feb2f7ec26b8b1049673fb584 to your computer and use it in GitHub Desktop.
Save littlebobert/7de3d06feb2f7ec26b8b1049673fb584 to your computer and use it in GitHub Desktop.
version: 2
jobs:
build:
macos:
xcode: "9.4.0"
# The rest of our build job
snapshots:
macos:
xcode: "9.4.0"
steps:
- run: echo "Hello World"
workflows:
version: 2
commit-workflow:
jobs:
- build
snapshots-workflow:
triggers:
- schedule:
cron: "*/30 * * * *"
filters:
branches:
only:
- jg/nightly-snapshots-test
jobs:
- snapshots
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment