blob: 5d4ac00d5c37645b07c2f93fef3b174adaf9a988 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
pipeline:
build:
image: node:latest
commands:
- npm install
- node render.js
deploy:
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: /
|