frontend/.drone.yml

90 lines
2.0 KiB
YAML
Raw Normal View History

2018-09-08 15:44:29 +00:00
workspace:
base: /srv/app
clone:
git:
image: plugins/git
depth: 50
tags: true
2018-09-08 15:45:01 +00:00
pipeline:
2018-09-08 15:44:29 +00:00
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
2018-11-06 09:26:41 +00:00
- "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config
2019-03-03 21:38:12 +00:00
- yarn run build
2018-09-08 15:44:29 +00:00
when:
event: [push, tag, pull_request]
static:
image: karalabe/xgo-latest:latest
pull: true
commands:
- cd dist
- zip -r ../vikunja-frontend-${DRONE_TAG##v}.zip *
2018-09-08 15:44:29 +00:00
- cd ..
when:
event: [tag]
2018-09-08 15:52:06 +00:00
static:
image: karalabe/xgo-latest:latest
pull: true
commands:
- cd dist
- zip -r ../vikunja-frontend-master.zip *
- cd ..
when:
event: [push]
2018-09-08 15:52:24 +00:00
branch: [ master ]
2018-09-08 15:44:29 +00:00
# Push the releases to our pseudo-s3-bucket
release:
image: plugins/s3:1
pull: true
secrets: [ aws_access_key_id, aws_secret_access_key ]
bucket: vikunja-frontend
2018-09-08 15:44:29 +00:00
endpoint: https://storage.kolaente.de
path_style: true
source: vikunja-frontend-${DRONE_TAG##v}.zip
2018-09-08 15:44:29 +00:00
when:
event: [ tag ]
release:
image: plugins/s3:1
pull: true
secrets: [ aws_access_key_id, aws_secret_access_key ]
bucket: vikunja-frontend
2018-09-08 15:44:29 +00:00
endpoint: https://storage.kolaente.de
path_style: true
source: vikunja-frontend-master.zip
2018-09-08 15:44:29 +00:00
when:
event: [ push ]
branch: [ master ]
2018-09-08 15:56:45 +00:00
# Build the docker image and push it to docker hub
docker:
image: plugins/docker
pull: true
secrets: [ docker_username, docker_password ]
repo: vikunja/frontend
auto_tag: true
2018-09-09 17:57:27 +00:00
when:
event: [ push, tag ]
branch: [ master ]
rancher:
image: peloton/drone-rancher
url: http://server01.kolaente.de:8080/v1
secrets: [ RANCHER_ACCESS_KEY, RANCHER_SECRET_KEY ]
service: vikunja-dev/frontend
docker_image: vikunja/frontend
confirm: true
2018-09-08 15:56:45 +00:00
when:
event: [ push, tag ]
branch: [ master ]