add drone yml
This commit is contained in:
parent
3b3e231bb8
commit
1e9c940fd8
2 changed files with 51 additions and 10 deletions
21
.drone.yml
Normal file
21
.drone.yml
Normal file
|
@ -0,0 +1,21 @@
|
|||
---
|
||||
kind: pipeline
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: ghcr.io/getzola/zola:v0.16.0
|
||||
commands:
|
||||
- build
|
||||
|
||||
- name: upload
|
||||
image: plugins/s3
|
||||
settings:
|
||||
bucket: guide
|
||||
access_key:
|
||||
from_secret: aws_access_key_id
|
||||
secret_key:
|
||||
from_secret: aws_secret_acess_key
|
||||
source: public/**/*
|
||||
target: /
|
||||
strip_prefix: public/
|
|
@ -11,16 +11,36 @@ display_url: http://guide.web.vimaire.machine.dufour.io
|
|||
locale: 'en'
|
||||
|
||||
collections:
|
||||
- name: 'accueil'
|
||||
label: 'Accueil'
|
||||
editor:
|
||||
preview: false
|
||||
files:
|
||||
- name: accueil2
|
||||
label: Accueil2
|
||||
file: 'content/_index.md'
|
||||
fields:
|
||||
- label: Title
|
||||
name: title
|
||||
widget: string
|
||||
- label: Sort by
|
||||
name: sort_by
|
||||
widget: string
|
||||
- label: Body
|
||||
name: body
|
||||
widget: markdown
|
||||
|
||||
|
||||
- name: 'prise_en_main'
|
||||
label: 'Prise en main'
|
||||
folder: 'content/prise_en_main'
|
||||
summary: '{{title}} ({{dirname}})'
|
||||
#summary: '{{title}} ({{dirname}})'
|
||||
editor:
|
||||
preview: false
|
||||
create: true
|
||||
nested:
|
||||
depth: 3
|
||||
summary: '{{title}}'
|
||||
#nested:
|
||||
# depth: 3
|
||||
# summary: '{{title}}'
|
||||
fields:
|
||||
- label: Title
|
||||
name: title
|
||||
|
@ -31,7 +51,7 @@ collections:
|
|||
- label: Body
|
||||
name: body
|
||||
widget: markdown
|
||||
meta: { path: { widget: string, label: 'Path', index_file: '_index' } }
|
||||
#meta: { path: { widget: string, label: 'Path', index_file: '_index' } }
|
||||
|
||||
- name: 'formations'
|
||||
label: 'Se former'
|
||||
|
@ -39,10 +59,10 @@ collections:
|
|||
editor:
|
||||
preview: false
|
||||
create: true
|
||||
summary: '{{title}} ({{dirname}})'
|
||||
nested:
|
||||
depth: 3
|
||||
summary: '{{title}}'
|
||||
#summary: '{{title}} ({{dirname}})'
|
||||
#nested:
|
||||
# depth: 3
|
||||
# summary: '{{title}}'
|
||||
fields:
|
||||
- label: Title
|
||||
name: title
|
||||
|
@ -53,4 +73,4 @@ collections:
|
|||
- label: Body
|
||||
name: body
|
||||
widget: markdown
|
||||
meta: { path: { widget: string, label: 'Path', index_file: '_index' } }
|
||||
#meta: { path: { widget: string, label: 'Path', index_file: '_index' } }
|
||||
|
|
Loading…
Reference in a new issue