aboutsummaryrefslogtreecommitdiff
path: root/.drone.yml
blob: 5f07d8b5109aed2a047b49bd1a00407e95653a4b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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: /
      endpoint: https://garage.deuxfleurs.fr/
      path_style: true