mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 17:57:01 +08:00
18 lines
429 B
C#
18 lines
429 B
C#
/*using Nuke.Common.CI.GitHubActions;
|
|
|
|
namespace MaaBuilder;
|
|
|
|
[GitHubActions(
|
|
name: "release-maa-core",
|
|
image: GitHubActionsImage.WindowsLatest,
|
|
OnPushTags = new[] { "v*" },
|
|
InvokedTargets = new[] { nameof(ReleaseMaaCore) },
|
|
ImportSecrets = new[] { "PUBLISH_GH_PAT" },
|
|
EnableGitHubToken = true,
|
|
PublishArtifacts = true
|
|
)]
|
|
public partial class Build { }
|
|
*/
|
|
|
|
// 在 MaaElectronUI 发布前不启用
|