forked from google/material-design-lite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.drone.yml
26 lines (26 loc) · 763 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
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
# 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