forked from concur/developer.concur.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
34 lines (30 loc) · 696 Bytes
/
circle.yml
File metadata and controls
34 lines (30 loc) · 696 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
machine:
timezone:
America/Los_Angeles
ruby:
version: 2.2.2
general:
branches:
only:
- preview
- livesite
dependencies:
override:
- ./build/install_aws_cli.sh
- gem install jekyll
- bundle install
test:
override:
- ./build/write_branch.sh
- ./build/write_commit.sh
- ./build/write_forms.sh
- bundle exec jekyll build
deployment:
preview:
branch: preview
commands:
- aws s3 sync ./_site s3://preview-developer-concur-com --region us-west-2 --output text --delete
livesite:
branch: livesite
commands:
- aws s3 sync ./_site s3://livesite-developer-concur-com --region us-west-2 --output text --delete