Skip to content

Commit

Permalink
Rename master to main
Browse files Browse the repository at this point in the history
  • Loading branch information
Megasware128 committed May 26, 2021
1 parent 07c32ce commit 3f7bae1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ name: ci
on:
push:
branches:
- master
- main
- dev

jobs:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ image:

branches:
only:
- master
- main
- dev

build_script:
Expand Down
4 changes: 2 additions & 2 deletions build/Build.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@

[CheckBuildProjectConfigurations]
[ShutdownDotNetAfterServerBuild]
[AppVeyor(AppVeyorImage.VisualStudio2019, BranchesOnly = new[] { "master", "dev" }, InvokedTargets = new[] { nameof(Test) })]
[AppVeyor(AppVeyorImage.VisualStudio2019, BranchesOnly = new[] { "main", "dev" }, InvokedTargets = new[] { nameof(Test) })]
[GitHubActions("ci",
GitHubActionsImage.WindowsLatest,
InvokedTargets = new[] { nameof(Test), nameof(Pack) },
OnPushBranches = new[] { "master", "dev" },
OnPushBranches = new[] { "main", "dev" },
PublishArtifacts = true)]
[GitHubActions("publish", GitHubActionsImage.UbuntuLatest, InvokedTargets = new[] { nameof(Pack), nameof(Publish) }, OnPushTags = new[] { "v*" }, ImportSecrets = new[] { nameof(NuGetApiKey) })]
class Build : NukeBuild
Expand Down

0 comments on commit 3f7bae1

Please sign in to comment.