From abce96ffca3c66559c87c7aeb2bdaa33711a56c5 Mon Sep 17 00:00:00 2001 From: Miepee <38186597+Miepee@users.noreply.github.com> Date: Wed, 18 Jan 2023 15:34:52 +0100 Subject: [PATCH] Clone submodules for action builds --- .github/workflows/main.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9e34bc3..c2aec6f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -26,7 +26,9 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: Setup .NET uses: actions/setup-dotnet@v1 with: @@ -69,7 +71,9 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 + with: + submodules: true - name: Setup .NET uses: actions/setup-dotnet@v1 with: