diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 22d0e57..b3153ae 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,6 +16,11 @@ jobs: repository: 'DbSyncKit/DbSyncKit' submodules: true + - name: Pull & update submodules recursively + run: | + git submodule update --init --recursive + git submodule update --recursive --remote + - name: Setup .NET Core uses: actions/setup-dotnet@v2 with: diff --git a/.github/workflows/nuget_publish.yml b/.github/workflows/nuget_publish.yml index 1f458cb..55f1f5f 100644 --- a/.github/workflows/nuget_publish.yml +++ b/.github/workflows/nuget_publish.yml @@ -15,6 +15,11 @@ jobs: with: repository: 'DbSyncKit/DbSyncKit' + - name: Pull & update submodules recursively + run: | + git submodule update --init --recursive + git submodule update --recursive --remote + - name: Setup .NET Core uses: actions/setup-dotnet@v2 with: