Skip to content

Commit

Permalink
Change workflow runners to Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaioru committed Dec 10, 2024
1 parent 163018c commit b29a954
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/Build.CI.GithubActions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@

[GitHubActions(
"build",
GitHubActionsImage.UbuntuLatest,
GitHubActionsImage.WindowsLatest,
On = new[] { GitHubActionsTrigger.Push },
InvokedTargets = new[] { nameof(Compile) }
)]
[GitHubActions(
"pack",
GitHubActionsImage.UbuntuLatest,
GitHubActionsImage.WindowsLatest,
On = new[] { GitHubActionsTrigger.WorkflowDispatch },
InvokedTargets = new[] { nameof(Pack) },
FetchDepth = 0
)]
[GitHubActions(
"publish",
GitHubActionsImage.UbuntuLatest,
GitHubActionsImage.WindowsLatest,
On = new[] { GitHubActionsTrigger.WorkflowDispatch },
InvokedTargets = new[] { nameof(Publish) },
FetchDepth = 0
Expand Down

0 comments on commit b29a954

Please sign in to comment.