This commit is contained in:
Hasan Manzak 2023-02-23 03:57:01 +03:00
parent 01ba3914ae
commit a6dbcedf94
No known key found for this signature in database
GPG Key ID: C1573806B673A138
2 changed files with 6 additions and 3 deletions

View File

@ -23,10 +23,12 @@ on:
- 'releases/*' - 'releases/*'
jobs: jobs:
ubuntu-latest: ubuntu-20_04:
name: ubuntu-20.04 name: ubuntu-20_04
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Run './build.cmd Ci' - name: Run './build.cmd Ci'
run: ./build.cmd Ci run: ./build.cmd Ci

View File

@ -18,7 +18,8 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks;
OnPullRequestBranches = new[] {"master", "releases/*"}, OnPullRequestBranches = new[] {"master", "releases/*"},
AutoGenerate = true, AutoGenerate = true,
InvokedTargets = new[] {nameof(Ci)}, InvokedTargets = new[] {nameof(Ci)},
CacheKeyFiles = new string[0] CacheKeyFiles = new string[0],
FetchDepth = 0
) )
] ]
[GitHubActions("ci_publish", GitHubActionsImage.UbuntuLatest, [GitHubActions("ci_publish", GitHubActionsImage.UbuntuLatest,