forked from Deuxfleurs/site
Automatic upload to production website
This commit is contained in:
parent
b1149c7b90
commit
de58cd9686
1 changed files with 19 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
steps:
|
steps:
|
||||||
- name: upload
|
- name: upload (preprod)
|
||||||
when:
|
when:
|
||||||
branch:
|
branch:
|
||||||
- preprod
|
- preprod
|
||||||
|
@ -15,6 +15,22 @@ steps:
|
||||||
source: static/**/*
|
source: static/**/*
|
||||||
target: /
|
target: /
|
||||||
strip_prefix: static/
|
strip_prefix: static/
|
||||||
# a bit more robust: do not require the let's encrypt certificate to be
|
path_style: true
|
||||||
# working for the subdomain
|
|
||||||
|
- 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/
|
||||||
path_style: true
|
path_style: true
|
||||||
|
|
Loading…
Reference in a new issue