From 05825d2370e9d329bab8ff6ae906fdad791a169b Mon Sep 17 00:00:00 2001 From: saharNooby Date: Mon, 17 Apr 2023 19:04:55 +0400 Subject: [PATCH] Fix GitHub Actions --- .github/workflows/build.yml | 12 +++++++++--- README.md | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d1e13ff..07807e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,9 @@ jobs: steps: - name: Clone id: checkout - uses: actions/checkout@v1 + uses: actions/checkout@v3 + with: + submodules: 'recursive' - name: Dependencies id: depends @@ -72,7 +74,9 @@ jobs: steps: - name: Clone id: checkout - uses: actions/checkout@v1 + uses: actions/checkout@v3 + with: + submodules: 'recursive' - name: Dependencies id: depends @@ -130,7 +134,9 @@ jobs: steps: - name: Clone id: checkout - uses: actions/checkout@v1 + uses: actions/checkout@v3 + with: + submodules: 'recursive' - name: Build id: cmake_build diff --git a/README.md b/README.md index d13bb59..5b29344 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ Loading LoRA checkpoints in [Blealtan's format](https://github.com/Blealtan/RWKV **Requirements**: [git](https://gitforwindows.org/). ```commandline -git clone https://github.com/saharNooby/rwkv.cpp.git +git clone --recursive https://github.com/saharNooby/rwkv.cpp.git cd rwkv.cpp ```