android.yml
背景
通过 git submodule add添加的第三方库在ci环境中无法找到文件
git submodule add https://github.com/google/leveldb.git
https://github.com/forevermgg/EnvironmentCheck/tree/main/.github/workflows
Checkout submodule
在android.yml 添加如下代码
- name: Checkout submodule
run: git submodule sync --recursive && git submodule update --init --recursive
网友评论