forked from nijikokun/minami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcircle.yml
More file actions
29 lines (29 loc) · 754 Bytes
/
circle.yml
File metadata and controls
29 lines (29 loc) · 754 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
general:
branches:
ignore:
- gh-pages
- /release.*/
machine:
environment:
PATH: './node_modules/.bin:$PATH'
pre:
- git config --global user.name "mere"
- git config --global user.email "github@zoltanb.co.uk"
dependencies:
pre:
- echo -e "$NPM_USER\n$NPM_PASS\n$NPM_EMAIL" | npm login
post:
- nca run echo "before update-modules"
- nca run nca notice update-modules
- nca run echo "after update-modules"
deployment:
create_release_branch:
branch:
- master
commands:
- nca run echo "before release"
- nca release --prefix v
- nca run echo "after release"
- nca run echo "before gh-pages"
- nca run nca notice gh-pages
- nca run echo "after gh-pages"