site/.drone.yml

25 lines
493 B
YAML
Raw Normal View History

2021-02-08 14:01:20 +00:00
kind: pipeline
name: default
steps:
- name: build
2021-02-08 13:46:47 +00:00
image: node:latest
commands:
- npm install
- node render.js
2021-02-08 14:01:20 +00:00
- name: upload
2021-02-08 13:49:03 +00:00
image: plugins/s3
settings:
bucket: deuxfleurs.fr
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: static/**/*
2021-02-08 14:01:20 +00:00
strip_prefix: static/
2021-02-08 13:49:03 +00:00
target: /
2021-02-08 13:49:29 +00:00
path_style: true
2021-02-08 14:01:20 +00:00
endpoint: https://garage.deuxfleurs.fr
region: garage
2021-02-08 13:46:47 +00:00