From c615f8d60da9da80f9572d672c22fded106fdd64 Mon Sep 17 00:00:00 2001 From: RohitM-IN Date: Sun, 31 Dec 2023 20:12:16 +0530 Subject: [PATCH] github workfow updates --- .github/workflows/build.yml | 5 +++++ .github/workflows/nuget_publish.yml | 5 +++++ 2 files changed, 10 insertions(+) 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: