diff --git a/.github/workflows/build-commit.yml b/.github/workflows/build-commit.yml index 5f2c855..40af290 100644 --- a/.github/workflows/build-commit.yml +++ b/.github/workflows/build-commit.yml @@ -37,6 +37,11 @@ jobs: runs-on: ubuntu-latest needs: build-commit steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: @@ -48,6 +53,11 @@ jobs: runs-on: ubuntu-latest needs: test-commit steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: @@ -82,6 +92,11 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 10cdde3..4373cc8 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -39,6 +39,11 @@ jobs: runs-on: ubuntu-latest needs: build-commit steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fbf8a78..8f5632f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -31,6 +31,11 @@ jobs: runs-on: ubuntu-latest needs: build-commit steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: @@ -42,6 +47,11 @@ jobs: runs-on: ubuntu-latest needs: build-commit steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: @@ -75,6 +85,11 @@ jobs: name: github-pages url: ${{ steps.deployment.outputs.page_url }} steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: recursive + fetch-depth: 0 - name: Setup .NET uses: actions/setup-dotnet@v3 with: