Nuke publish artifacts
This commit is contained in:
parent
732515e0cc
commit
c3b1045079
3 changed files with 31 additions and 11 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,3 +6,4 @@ obj/
|
||||||
|
|
||||||
INetMock.sln.DotSettings.user
|
INetMock.sln.DotSettings.user
|
||||||
*.log
|
*.log
|
||||||
|
*.nupkg
|
||||||
|
|
|
@ -19,3 +19,13 @@ protobuf-lint:
|
||||||
- cd api/
|
- cd api/
|
||||||
- buf ls-files
|
- buf ls-files
|
||||||
- buf lint
|
- buf lint
|
||||||
|
|
||||||
|
nuget-publish:
|
||||||
|
stage: release
|
||||||
|
only:
|
||||||
|
refs:
|
||||||
|
- master
|
||||||
|
- tags
|
||||||
|
script:
|
||||||
|
- dotnet tool restore
|
||||||
|
- dotnet nuke Publish
|
||||||
|
|
|
@ -1,5 +1,3 @@
|
||||||
using System;
|
|
||||||
using System.Linq;
|
|
||||||
using JetBrains.Annotations;
|
using JetBrains.Annotations;
|
||||||
using Nuke.Common;
|
using Nuke.Common;
|
||||||
using Nuke.Common.CI;
|
using Nuke.Common.CI;
|
||||||
|
@ -19,11 +17,7 @@ using static Nuke.Common.Tools.DotNet.DotNetTasks;
|
||||||
[ShutdownDotNetAfterServerBuild]
|
[ShutdownDotNetAfterServerBuild]
|
||||||
class Build : NukeBuild
|
class Build : NukeBuild
|
||||||
{
|
{
|
||||||
/// Support plugins are available for:
|
private const string NuGetSourceName = "GitLab";
|
||||||
/// - JetBrains ReSharper https://nuke.build/resharper
|
|
||||||
/// - JetBrains Rider https://nuke.build/rider
|
|
||||||
/// - Microsoft VisualStudio https://nuke.build/visualstudio
|
|
||||||
/// - Microsoft VSCode https://nuke.build/vscode
|
|
||||||
public static int Main() => Execute<Build>(x => x.Compile);
|
public static int Main() => Execute<Build>(x => x.Compile);
|
||||||
|
|
||||||
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
|
[Parameter("Configuration to build - Default is 'Debug' (local) or 'Release' (server)")]
|
||||||
|
@ -33,14 +27,13 @@ class Build : NukeBuild
|
||||||
[GitRepository] readonly GitRepository GitRepository;
|
[GitRepository] readonly GitRepository GitRepository;
|
||||||
[GitVersion(NoFetch = true, Framework = "net5.0")] readonly GitVersion GitVersion;
|
[GitVersion(NoFetch = true, Framework = "net5.0")] readonly GitVersion GitVersion;
|
||||||
|
|
||||||
|
|
||||||
[CanBeNull]
|
[CanBeNull] GitLab CI => GitLab.Instance;
|
||||||
GitLab CI => GitLab.Instance;
|
|
||||||
|
|
||||||
AbsolutePath SourceDirectory => RootDirectory / "src";
|
AbsolutePath SourceDirectory => RootDirectory / "src";
|
||||||
AbsolutePath TestsDirectory => RootDirectory / "tests";
|
AbsolutePath TestsDirectory => RootDirectory / "tests";
|
||||||
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
|
AbsolutePath ArtifactsDirectory => RootDirectory / "artifacts";
|
||||||
|
|
||||||
Target PrintEnv => _ => _
|
Target PrintEnv => _ => _
|
||||||
.Executes(() =>
|
.Executes(() =>
|
||||||
{
|
{
|
||||||
|
@ -95,6 +88,16 @@ class Build : NukeBuild
|
||||||
.EnableNoBuild()
|
.EnableNoBuild()
|
||||||
.EnableProcessLogOutput()));
|
.EnableProcessLogOutput()));
|
||||||
|
|
||||||
|
Target AddNugetSource => _ => _
|
||||||
|
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
||||||
|
.OnlyWhenStatic(() => CI != null)
|
||||||
|
.Executes(() => DotNetNuGetAddSource(s => s
|
||||||
|
.SetName(NuGetSourceName)
|
||||||
|
.SetSource($"https://gitlab.com/api/v4/projects/{CI.ProjectId}/packages/nuget/index.json")
|
||||||
|
.SetUsername("gitlab-ci-token")
|
||||||
|
.SetPassword(CI.JobToken)
|
||||||
|
.EnableStorePasswordInClearText()));
|
||||||
|
|
||||||
Target Pack => _ => _
|
Target Pack => _ => _
|
||||||
.DependsOn(Test)
|
.DependsOn(Test)
|
||||||
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
.OnlyWhenStatic(() => GitRepository.IsOnMasterBranch())
|
||||||
|
@ -111,4 +114,10 @@ class Build : NukeBuild
|
||||||
.EnableNoBuild()
|
.EnableNoBuild()
|
||||||
.EnableProcessLogOutput()
|
.EnableProcessLogOutput()
|
||||||
)));
|
)));
|
||||||
|
|
||||||
|
Target Publish => _ => _
|
||||||
|
.DependsOn(Pack, AddNugetSource)
|
||||||
|
.Executes(() => DotNetPublish(s => s
|
||||||
|
.EnableNoRestore()
|
||||||
|
.SetConfiguration(Configuration)));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue