From 7a4390570a116f76bf7ae7e4b983cb95e330480c Mon Sep 17 00:00:00 2001 From: Mikhail Sandakov Date: Fri, 3 Nov 2023 07:01:36 +0200 Subject: [PATCH] Enable checking out submodules in the build action --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a45abd..2991235 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,7 +7,10 @@ jobs: runs-on: ubuntu-20.04 # Not latest, because python3.6 is not available on latest # https://github.com/actions/setup-python/issues/544 steps: - - uses: actions/checkout@v2 + - name: Checkout repository and submodules + uses: actions/checkout@v2 + with: + submodules: recursive - name: Prepare artifact store run: mkdir -p ./buck-out/gen - name: Build centos2alma