kind: pipeline type: docker name: default #secrets: [ AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY ] steps: - name: Version check image: plugins/hugo commands: - git clone git@git.deuxfleurs.fr:julienDai/test.git - 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: plugins/hugo environment: AWS_ACCESS_KEY_ID: from_secret: AWS_ACCESS_KEY_ID AWS_SECRET_ACCESS_KEY: from_secret: AWS_SECRET_ACCESS_KEY commands: - hugo deploy --config hugo.toml