Skip to content

Commit

Permalink
CI/DI
Browse files Browse the repository at this point in the history
  • Loading branch information
ScarletKuro committed May 27, 2024
1 parent d95db1a commit 046a887
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,16 @@
FetchDepth = 0,
On = new[] { GitHubActionsTrigger.Push },
PublishArtifacts = true,
InvokedTargets = new[] { nameof(Compile), nameof(Pack) })]
InvokedTargets = new[] { nameof(Compile), nameof(Pack) },
EnableGitHubToken = true)]
[GitHubActions(
"release",
GitHubActionsImage.UbuntuLatest,
FetchDepth = 0,
OnPushTags = new[] { @"\d+\.\d+\.\d+" },
PublishArtifacts = true,
InvokedTargets = new[] { nameof(Push), nameof(PushGithubNuget) },
EnableGitHubToken = true,
ImportSecrets = new[] { nameof(NuGetApiKey) })]
class Build : NukeBuild
{
Expand Down

0 comments on commit 046a887

Please sign in to comment.