2021-04-05 11:16:54 +02:00
|
|
|
---
|
2021-04-05 11:21:04 +02:00
|
|
|
# see https://docs.drone.io/pipeline/configuration/
|
2021-02-08 15:01:20 +01:00
|
|
|
kind: pipeline
|
2021-04-05 11:16:54 +02:00
|
|
|
type: docker
|
|
|
|
name: build
|
2021-02-08 15:01:20 +01:00
|
|
|
|
|
|
|
steps:
|
2021-02-08 16:26:21 +01:00
|
|
|
- name: restore-cache
|
2021-04-05 11:16:54 +02:00
|
|
|
image: meltwater/drone-cache:v1.1.0
|
2021-02-08 16:26:21 +01:00
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: cache_aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: cache_aws_secret_access_key
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
restore: true
|
|
|
|
bucket: drone-cache
|
|
|
|
region: garage
|
|
|
|
mount:
|
|
|
|
- 'node_modules'
|
|
|
|
path_style: true
|
|
|
|
endpoint: https://garage.deuxfleurs.fr
|
|
|
|
|
2021-02-08 15:01:20 +01:00
|
|
|
- name: build
|
2021-04-11 12:09:17 +02:00
|
|
|
# cf https://hub.docker.com/_/node?tab=description&page=1&ordering=last_updated
|
|
|
|
image: node:14-buster
|
2021-02-08 14:46:47 +01:00
|
|
|
commands:
|
|
|
|
- npm install
|
|
|
|
- node render.js
|
2021-02-08 16:26:21 +01:00
|
|
|
|
2021-02-08 15:01:20 +01:00
|
|
|
- name: upload
|
2021-02-08 14:49:03 +01: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 15:01:20 +01:00
|
|
|
strip_prefix: static/
|
2021-02-08 14:49:03 +01:00
|
|
|
target: /
|
2021-02-08 14:49:29 +01:00
|
|
|
path_style: true
|
2021-02-08 15:01:20 +01:00
|
|
|
endpoint: https://garage.deuxfleurs.fr
|
|
|
|
region: garage
|
2021-04-05 11:16:54 +02:00
|
|
|
when:
|
|
|
|
branch:
|
|
|
|
- main
|
2021-04-11 12:38:55 +02:00
|
|
|
event:
|
|
|
|
exclude:
|
|
|
|
- pull_request
|
2021-02-08 14:46:47 +01:00
|
|
|
|
2021-02-08 16:26:21 +01:00
|
|
|
- name: rebuild-cache
|
2021-04-05 11:16:54 +02:00
|
|
|
image: meltwater/drone-cache:v1.1.0
|
2021-02-08 16:26:21 +01:00
|
|
|
environment:
|
|
|
|
AWS_ACCESS_KEY_ID:
|
|
|
|
from_secret: cache_aws_access_key_id
|
|
|
|
AWS_SECRET_ACCESS_KEY:
|
|
|
|
from_secret: cache_aws_secret_access_key
|
|
|
|
pull: true
|
|
|
|
settings:
|
|
|
|
rebuild: true
|
|
|
|
bucket: drone-cache
|
|
|
|
region: garage
|
|
|
|
mount:
|
|
|
|
- 'node_modules'
|
|
|
|
path_style: true
|
|
|
|
endpoint: https://garage.deuxfleurs.fr
|
2021-04-05 12:14:43 +02:00
|
|
|
---
|
|
|
|
kind: signature
|
2021-04-11 12:42:26 +02:00
|
|
|
hmac: f1fcc439a2180d4e98224dec1cd2dc10691b58161bfee7739ae700e84f04c905
|
2021-04-05 12:14:43 +02:00
|
|
|
|
|
|
|
...
|