forked from HR-Data-Geyser/Data-Geyser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
28 lines (28 loc) · 934 Bytes
/
circle.yml
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
dependencies:
override:
- grunt build:dist:
timeout: 600
pre:
- wget http://downloads.sourceforge.net/project/optipng/OptiPNG/optipng-0.7.5/optipng-0.7.5.tar.gz
- tar xvf optipng-0.7.5.tar.gz
- cd optipng-0.7.5; ./configure; make; sudo checkinstall -y;
- bower install
deployment:
production:
branch: master
commands:
- grunt build:dist
- git config --global user.email "[email protected]"
- git config --global user.name "Tom G Varik"
- heroku maintenance:on --app datageyser
- grunt buildcontrol:production
- heroku maintenance:off --app datageyser
staging:
branch: develop
commands:
- grunt build:dist
- git config --global user.email "[email protected]"
- git config --global user.name "Tom G Varik"
- heroku maintenance:on --app datageyser
- grunt buildcontrol:staging
- heroku maintenance:off --app datageyser