testconfig/.drone.yml
Julien-DAI 593d616425
Some checks failed
continuous-integration/drone/push Build is failing
config changes
2023-12-15 10:36:47 +01:00

33 lines
No EOL
832 B
YAML

kind: pipeline
type: docker
name: default
#secrets: [ AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY ]
steps:
- name: Version check
image: plugins/hugo
commands:
- echo "Checking Hugo version."
- hugo version
- echo "Checking folder"
- ls
- name: Build
image: plugins/hugo
settings:
validate: true
commands:
- hugo --config hugo.toml
#- minify -r -o /drone/src/build /drone/src/build
- name: Deploy
image: alpine/git
environment:
GIT_USERNAME:
from_secret: GIT_USERNAME
GIT_PASSWORD:
from_secret: GIT_PASSWORD
commands:
- git clone https://julienDai@git.deuxfleurs.fr/julienDai/test
- cd test
- git config user.name "julienDai"
- git config user.email "julien.dai@imt-atlantique.net"
- git push origin main