Initialise submodules first in build actions
This commit is contained in:
3
.github/workflows/build-test.yaml
vendored
3
.github/workflows/build-test.yaml
vendored
@ -24,6 +24,9 @@ jobs:
|
||||
uses: actions/setup-dotnet@v2
|
||||
with:
|
||||
dotnet-version: ${{ matrix.dotnet-version }}
|
||||
|
||||
- name: Initialise submodules
|
||||
run: git submodule update --init
|
||||
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
|
3
.github/workflows/nightly-build.yaml
vendored
3
.github/workflows/nightly-build.yaml
vendored
@ -18,6 +18,9 @@ jobs:
|
||||
uses: actions/setup-dotnet@v2
|
||||
with:
|
||||
dotnet-version: ${{ matrix.dotnet-version }}
|
||||
|
||||
- name: Initialise submodules
|
||||
run: git submodule update --init
|
||||
|
||||
- name: Restore dependencies
|
||||
run: dotnet restore
|
||||
|
Reference in New Issue
Block a user