Skip to content

Commit

Permalink
gameciによるビルド修正
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubasa-alife committed Nov 9, 2023
1 parent 857dc40 commit 8824d3e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/develop_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: Build
path: build
path: Build
2 changes: 1 addition & 1 deletion .github/workflows/release_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,4 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: Build
path: build
path: Build
5 changes: 2 additions & 3 deletions Assets/Scripts/Editor/ProjectBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,9 @@ private static void Build(BuildOptions buildOptions, BuildTarget buildTarget, bo
{
case BuildResult.Succeeded:
Console.WriteLine("Build succeeded!");
// TODO: Check GitHub Issue: https://github.com/game-ci/unity-builder/issues/563
Debug.Log("Logging fake Build results so that the build via game-ci/unity-builder does not fail...");
// フェイクログを表示する: https://github.com/game-ci/unity-builder/issues/563
Debug.Log($"###########################{Environment.NewLine}# Build results #{Environment.NewLine}###########################{Environment.NewLine}" +
$"{Environment.NewLine}Duration: 00:00:00.0000000{Environment.NewLine}Warnings: 0{Environment.NewLine}Errors: 0{Environment.NewLine}Size: 0 bytes{Environment.NewLine}{Environment.NewLine}{Environment.NewLine}Build succeeded!");
$"{Environment.NewLine}Duration: 00:00:00.0000000{Environment.NewLine}Warnings: 0{Environment.NewLine}Errors: 0{Environment.NewLine}Size: 0 bytes{Environment.NewLine}{Environment.NewLine}{Environment.NewLine}Build succeeded!");
EditorApplication.Exit(0);
break;
case BuildResult.Failed:
Expand Down

0 comments on commit 8824d3e

Please sign in to comment.