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/testconfig.git - cd testconfig - git config user.name "julienDai" - git config user.email "julien.dai@imt-atlantique.net" - git push origin main