diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f70d4ab..503b225 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,12 @@ on: - 'releases/*' jobs: - ubuntu-latest: - name: ubuntu-20.04 + ubuntu-20_04: + name: ubuntu-20_04 runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Run './build.cmd Ci' run: ./build.cmd Ci diff --git a/build/Build.cs b/build/Build.cs index dc80ed3..6310937 100644 --- a/build/Build.cs +++ b/build/Build.cs @@ -18,7 +18,8 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks; OnPullRequestBranches = new[] {"master", "releases/*"}, AutoGenerate = true, InvokedTargets = new[] {nameof(Ci)}, - CacheKeyFiles = new string[0] + CacheKeyFiles = new string[0], + FetchDepth = 0 ) ] [GitHubActions("ci_publish", GitHubActionsImage.UbuntuLatest,