Add event trigger #37
2 changed files with 35 additions and 24 deletions
27
.woodpecker/main.yaml
Normal file
27
.woodpecker/main.yaml
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
branch: main
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: alpine:3.17.2
|
||||||
|
commands:
|
||||||
|
- apk update
|
||||||
|
- apk add zola
|
||||||
|
- zola build
|
||||||
|
|
||||||
|
- name: upload
|
||||||
|
image: plugins/s3
|
||||||
|
settings:
|
||||||
|
bucket: guide.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: public/**/*
|
||||||
|
target: /
|
||||||
|
strip_prefix: public/
|
|
@ -1,4 +1,9 @@
|
||||||
---
|
when:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- pull_request
|
||||||
|
branch: main
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: build
|
- name: build
|
||||||
image: alpine:3.17.2
|
image: alpine:3.17.2
|
||||||
|
@ -6,30 +11,9 @@ steps:
|
||||||
- apk update
|
- apk update
|
||||||
- apk add zola
|
- apk add zola
|
||||||
- zola build
|
- zola build
|
||||||
|
|
||||||
- name: upload
|
- name: upload
|
||||||
when:
|
when:
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
branch:
|
|
||||||
- main
|
|
||||||
image: plugins/s3
|
|
||||||
settings:
|
|
||||||
bucket: guide.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: public/**/*
|
|
||||||
target: /
|
|
||||||
strip_prefix: public/
|
|
||||||
- name: upload
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- push
|
|
||||||
- pull_request
|
|
||||||
branch:
|
branch:
|
||||||
- preprod
|
- preprod
|
||||||
image: plugins/s3
|
image: plugins/s3
|
Loading…
Reference in a new issue