From decd2209f7a3101a74075c518f93b757b7ffbc84 Mon Sep 17 00:00:00 2001 From: BBaoVanC Date: Sun, 18 Apr 2021 15:21:40 -0500 Subject: [PATCH] Rename steps and add tree step --- .drone.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index b832043..258a471 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,18 +11,24 @@ trigger: - pull_request steps: - - name: Update submodules + - name: submodules image: alpine/git commands: - git submodule update --init --recursive - - name: Build site + - name: build image: mapitman/docker-hugo commands: - hugo version - hugo --minify - - name: Upload files + - name: tree + image: alpine:latest + commands: + - apk add tree + - tree -a public/ + + - name: upload image: appleboy/drone-scp settings: host: bbaovanc.com