theme/.drone.yml

42 lines
777 B
YAML
Raw Normal View History

2021-04-21 19:32:35 +00:00
kind: pipeline
name: build
trigger:
branch:
- master
event:
- push
steps:
- name: build
2021-04-21 19:42:06 +00:00
image: node:11
2021-04-21 19:32:35 +00:00
pull: true
group: build-static
commands:
- yarn --production=false
- yarn build
- name: static
image: kolaente/zip
pull: true
commands:
2021-04-21 19:46:38 +00:00
- rm -rf node_modules
- zip -r vikunja-theme.zip *
2021-04-21 19:32:35 +00:00
depends_on: [ build ]
- name: release
image: plugins/s3:1
pull: true
settings:
bucket: vikunja-releases
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
endpoint: https://s3.fr-par.scw.cloud
region: fr-par
path_style: true
source: vikunja-theme.zip
target: /theme/
depends_on: [ static ]