From a6314b0f0c9a7b6c58809b41f3b4efe03fbde3b2 Mon Sep 17 00:00:00 2001 From: kayomn Date: Sun, 7 Jul 2024 01:35:31 +0200 Subject: [PATCH] Add Git and LFS as dependencies to submodules CI stage --- .drone.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 7f045d1..4587b05 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,9 @@ steps: - name: submodules image: ubuntu:latest commands: - - git submodule update --init --recursive + - apt-get update + - apt-get install -y git git-lfs + - git submodule update --init --recursive - name: build image: ubuntu:latest