diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bcdd84fa..f9084987 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -45,11 +45,14 @@ jobs: $gameversion = $gameversions[$i]; $version = $gameversion.substring(1); $constgameversion = $gameversion.replace(".", ""); + echo "::group::Build for $gameversion" + echo "Start building for gameversion = $gameversion" dotnet clean $proj --configuration Release; dotnet build $proj --configuration Release -p:OverrideGameVersion=$gameversion -p:GameFolder="$path" -p:ConstGameVersionWithPrefix="$constgameversion"; # Copy Implementations to the Implementations folder Copy-Item $pdll $impl/; Copy-Item $ppdb $impl/; + echo "::endgroup::" } # Copy Implementations to the Module Copy-Item $impl/* $final;