We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1afc094 commit 887c7bbCopy full SHA for 887c7bb
build/Build.GitHub.cs
@@ -9,15 +9,17 @@
9
OnPushBranches = new [] { MasterBranch },
10
PublishArtifacts = false,
11
InvokedTargets = new[] { nameof(Cover), nameof(Pack) },
12
- ImportGitHubTokenAs = nameof(GitHubToken))]
+ ImportGitHubTokenAs = nameof(GitHubToken),
13
+ AutoGenerate = false)]
14
[GitHubActions(
15
"release",
16
GitHubActionsImage.WindowsLatest,
17
OnPushTags = new[] { "v0.*", "v1.*" },
18
PublishArtifacts = true,
19
InvokedTargets = new[] { nameof(Cover), nameof(Publish) },
20
ImportGitHubTokenAs = nameof(GitHubToken),
- ImportSecrets = new[] {nameof(NuGetApiKey)})]
21
+ ImportSecrets = new[] {nameof(NuGetApiKey)},
22
23
partial class Build
24
{
25
[CI] readonly GitHubActions GitHubActions;
0 commit comments