Skip to content

Commit

Permalink
Merge pull request #351 from miniduikboot/fix/artifact-description-wo…
Browse files Browse the repository at this point in the history
…rding

CI: Emphasize architecture of game instead of OS
  • Loading branch information
ghorsington authored Jan 8, 2022
2 parents 39f6bf8 + 4689787 commit 692fb86
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -285,23 +285,23 @@ Task("Pack")
["artifacts"] = new Dictionary<string, object>[] {
new() {
["file"] = $"BepInEx_UnityMono_x64{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Windows x64 machines"
["description"] = "BepInEx Unity Mono for Windows x64 games"
},
new() {
["file"] = $"BepInEx_UnityMono_x86{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Windows x86 machines"
["description"] = "BepInEx Unity Mono for Windows x86 games"
},
new() {
["file"] = $"BepInEx_UnityMono_unix{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity Mono for Unix machines with GCC (Linux, MacOS)"
["description"] = "BepInEx Unity Mono for Unix games using GCC (Linux, MacOS)"
},
new() {
["file"] = $"BepInEx_UnityIL2CPP_x64{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity IL2CPP for Windows x64 machines"
["description"] = "BepInEx Unity IL2CPP for Windows x64 games"
},
new() {
["file"] = $"BepInEx_UnityIL2CPP_x86{commitPrefix}{buildVersion}.zip",
["description"] = "BepInEx Unity IL2CPP for Windows x86 machines"
["description"] = "BepInEx Unity IL2CPP for Windows x86 games"
},
new() {
["file"] = $"BepInEx_NetLauncher{commitPrefix}{buildVersion}.zip",
Expand Down

0 comments on commit 692fb86

Please sign in to comment.