frontend/.drone.yml

143 lines
3.0 KiB
YAML
Raw Normal View History

2019-04-25 18:03:19 +00:00
kind: pipeline
name: testing
2018-09-08 15:44:29 +00:00
2019-04-25 18:03:19 +00:00
trigger:
branch:
exclude:
- master
event:
- push
2018-09-08 15:44:29 +00:00
2019-04-25 18:03:19 +00:00
steps:
- name: build
2019-03-03 21:38:12 +00:00
image: node:11-alpine
2018-09-08 15:44:29 +00:00
pull: true
group: build-static
commands:
2019-03-03 21:38:12 +00:00
- apk add yarn
- yarn
- yarn run lint
- yarn run build
2018-09-08 15:44:29 +00:00
2019-04-25 18:03:19 +00:00
---
kind: pipeline
name: release-latest
trigger:
branch:
- master
event:
- push
steps:
- name: build
image: node:11-alpine
2018-09-08 15:44:29 +00:00
pull: true
2019-04-25 18:03:19 +00:00
group: build-static
2018-09-08 15:44:29 +00:00
commands:
2019-04-25 18:03:19 +00:00
- apk add yarn
- yarn
- yarn run lint
- "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config
- yarn run build
2019-04-25 18:03:19 +00:00
- name: static
image: kolaente/zip
2018-09-08 15:52:06 +00:00
pull: true
commands:
- cd dist
- zip -r ../vikunja-frontend-master.zip *
- cd ..
2018-09-08 15:44:29 +00:00
2019-04-25 18:03:19 +00:00
- name: release-latest
2018-09-08 15:44:29 +00:00
image: plugins/s3:1
pull: true
2019-04-25 18:03:19 +00:00
settings:
bucket: vikunja-frontend
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
endpoint: https://storage.kolaente.de
path_style: true
source: vikunja-frontend-master.zip
# Build the docker image and push it to docker hub
- name: docker
image: plugins/docker
pull: true
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: vikunja/frontend
auto_tag: true
# Update the instance on try.vikunja.io
- name: rancher
image: peloton/drone-rancher
settings:
url: http://server01.kolaente.de:8080/v1
access_key:
from_secret: RANCHER_ACCESS_KEY
secret_key:
from_secret: RANCHER_SECRET_KEY
service: vikunja-dev/frontend
docker_image: vikunja/frontend
confirm: true
depends_on: [ docker ]
---
kind: pipeline
name: release-version
2018-09-08 15:44:29 +00:00
2019-04-25 18:03:19 +00:00
trigger:
event:
- tag
steps:
- name: build
image: node:11-alpine
pull: true
group: build-static
commands:
- apk add yarn
- yarn
- yarn run lint
- "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config
- yarn run build
- name: static
image: kolaente/zip
pull: true
commands:
- cd dist
- zip -r ../vikunja-frontend-${DRONE_TAG##v}.zip *
- cd ..
- name: release-latest
2018-09-08 15:44:29 +00:00
image: plugins/s3:1
pull: true
2019-04-25 18:03:19 +00:00
settings:
bucket: vikunja-frontend
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
endpoint: https://storage.kolaente.de
path_style: true
source: vikunja-frontend-${DRONE_TAG##v}.zip
2018-09-08 15:44:29 +00:00
2018-09-08 15:56:45 +00:00
# Build the docker image and push it to docker hub
2019-04-25 18:03:19 +00:00
- name: docker
2018-09-08 15:56:45 +00:00
image: plugins/docker
pull: true
2019-04-25 18:03:19 +00:00
settings:
username:
from_secret: docker_username
password:
from_secret: docker_password
repo: vikunja/frontend
auto_tag: true