From eaed4b249d90f3bcf90728521fd8658351519834 Mon Sep 17 00:00:00 2001 From: samsapti Date: Sun, 12 Jun 2022 00:19:08 +0200 Subject: [PATCH] Optimize submodule step in Drone CI --- .drone.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 75ea69a..6fe6090 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,8 +7,7 @@ steps: image: klakegg/hugo:alpine commands: - apk add --no-cache git - - git submodule init - - git submodule update + - git submodule update --init --single-branch --recursive - hugo - name: deploy