Skip to content

Commit

Permalink
unshallow fetch of repos
Browse files Browse the repository at this point in the history
  • Loading branch information
R0boC0p committed May 22, 2024
1 parent d6ee136 commit 9d86812
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,12 @@ jobs:
dotnet-version: ["6.0.x", "7.0.x", "8.0.x"]

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Perform a full clone to get the entire history

- name: Fetch all history for all tags and branches
run: git fetch --unshallow

- name: Setup .NET ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
Expand Down

0 comments on commit 9d86812

Please sign in to comment.