Stackedit/.travis.yml
2019-07-02 10:31:14 +01:00

25 lines
384 B
YAML

language: node_js
node_js:
- "8"
services:
- docker
before_deploy:
# Run docker build
- docker build -t benweet/stackedit .
# Install Helm
- curl -SLO https://git.io/get_helm.sh
- chmod 700 get_helm.sh
- ./get_helm.sh
- helm init --client-only
# Update the chart
- npm run chart
deploy:
provider: script
script: bash build/deploy.sh
on:
tags: true