site/.drone.yml

20 lines
404 B
YAML
Raw Normal View History

2021-02-08 13:46:47 +00:00
pipeline:
build:
image: node:latest
commands:
- npm install
- node render.js
deploy:
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/**/*
target: /
2021-02-08 13:49:29 +00:00
endpoint: https://garage.deuxfleurs.fr/
path_style: true
2021-02-08 13:46:47 +00:00