-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Added recursive submodule checkout to action
- Loading branch information
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Avoid shallow clone so NBGV can do its work. | ||
# Use Nerdbank.GitVersioning to set version variables: https://github.com/dotnet/nbgv | ||
submodules: 'recursive' | ||
- name: Set version | ||
uses: dotnet/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 # Avoid shallow clone so NBGV can do its work. | ||
# Use Nerdbank.GitVersioning to set version variables: https://github.com/AArnott/nbgv | ||
submodules: 'recursive' | ||
- name: Set version | ||
uses: dotnet/[email protected] | ||
with: | ||
|