Skip to content

Commit

Permalink
Disable workflows generation
Browse files Browse the repository at this point in the history
  • Loading branch information
aivascu committed Dec 10, 2021
1 parent 1afc094 commit 887c7bb
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/Build.GitHub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,17 @@
OnPushBranches = new [] { MasterBranch },
PublishArtifacts = false,
InvokedTargets = new[] { nameof(Cover), nameof(Pack) },
ImportGitHubTokenAs = nameof(GitHubToken))]
ImportGitHubTokenAs = nameof(GitHubToken),
AutoGenerate = false)]
[GitHubActions(
"release",
GitHubActionsImage.WindowsLatest,
OnPushTags = new[] { "v0.*", "v1.*" },
PublishArtifacts = true,
InvokedTargets = new[] { nameof(Cover), nameof(Publish) },
ImportGitHubTokenAs = nameof(GitHubToken),
ImportSecrets = new[] {nameof(NuGetApiKey)})]
ImportSecrets = new[] {nameof(NuGetApiKey)},
AutoGenerate = false)]
partial class Build
{
[CI] readonly GitHubActions GitHubActions;
Expand Down

0 comments on commit 887c7bb

Please sign in to comment.