forked from google/material-design-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.drone.yml
27 lines (27 loc) · 809 Bytes
/
.drone.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
image: crhym3/ci
git:
depth: 1
cache:
- /cache
script:
# workaround for cache, see https://github.com/drone/drone/issues/147
- mkdir -p /cache/node_modules
- rm -rf node_modules
- ln -s /cache/node_modules node_modules
# install dependencies
- npm install
- node_modules/napa/bin/napa mojombo/clippy
# ensure the build works
# this will also run gulp test
- gulp
deploy:
bash:
when:
owner: google
branch: master
script:
- apt-get install -y python-openssl # gcloud deps for service accounts
- openssl aes-256-cbc -d -in .drone.p12.enc -out .drone.p12 -pass env:DRONE_PASS
- /gcloud/bin/gcloud components update -q gsutil
- /gcloud/bin/gcloud auth activate-service-account $$DRONE_ACCOUNT --key-file .drone.p12
- gulp publish:staging