mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-18 18:20:39 +08:00
20 lines
497 B
C#
20 lines
497 B
C#
using Nuke.Common.CI.GitHubActions;
|
|
|
|
namespace MaaBuilder;
|
|
|
|
[GitHubActions(
|
|
name: "release-maa-resource",
|
|
image: GitHubActionsImage.WindowsLatest,
|
|
OnPushBranches = new[] { MasterBranch },
|
|
OnPushIncludePaths = new[]
|
|
{
|
|
"resource/**",
|
|
"3rdparty/resource/**"
|
|
},
|
|
InvokedTargets = new[] { nameof(ReleaseMaaResource) },
|
|
ImportSecrets = new[] { "PUBLISH_GH_PAT" },
|
|
EnableGitHubToken = true,
|
|
PublishArtifacts = true
|
|
)]
|
|
public partial class Build { }
|