site/.woodpecker.yaml

37 lines
833 B
YAML
Raw Normal View History

steps:
2024-04-28 10:17:49 +00:00
- name: upload (preprod)
when:
branch:
- preprod
image: plugins/s3
settings:
bucket: preprod-site
endpoint: https://garage.deuxfleurs.fr
region: garage
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: static/**/*
target: /
strip_prefix: static/
2024-04-28 10:17:49 +00:00
path_style: true
- name: upload (prod)
when:
- event: push
branch: main
image: plugins/s3
settings:
bucket: deuxfleurs.fr
endpoint: https://garage.deuxfleurs.fr
region: garage
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: static/**/*
target: /
strip_prefix: static/
2024-03-17 11:20:08 +00:00
path_style: true