20 lines
No EOL
382 B
YAML
20 lines
No EOL
382 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
#secrets: [ AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY ]
|
|
|
|
steps:
|
|
- name: greeting
|
|
image: alpine
|
|
commands:
|
|
- echo hello
|
|
- echo world
|
|
- echo "ça marche"
|
|
- name: build
|
|
image: plugins/hugo
|
|
settings:
|
|
hugo_version: 0.55
|
|
config: path/hugo.toml
|
|
validate: true
|
|
commands:
|
|
- hugo deploy |