From e06ca0e2e3397bea59d9719c5a60ed6496d04021 Mon Sep 17 00:00:00 2001 From: Toastie Date: Tue, 24 Sep 2024 23:58:51 +1200 Subject: [PATCH] Added comments to the script so you know what build it is working on in the earlier parts of the release section. --- elliebot/ellie-menu.ps1 | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/elliebot/ellie-menu.ps1 b/elliebot/ellie-menu.ps1 index 59e869b..de1a109 100644 --- a/elliebot/ellie-menu.ps1 +++ b/elliebot/ellie-menu.ps1 @@ -37,17 +37,29 @@ if ($release) { Write-Host "Publishing EllieBot v$version" -Foregroundcolor Green Write-Output "" + Write-Output "" + Write-Output "Compiling the linux-x64 build" Write-Output "" dotnet publish -c Release -r linux-x64 --self-contained -o elliebot-linux-x64 src/EllieBot/EllieBot.csproj Write-Output "" + Write-Output "Compiling the linux-arm64 build" + Write-Output "" dotnet publish -c Release -r linux-arm64 --self-contained -o elliebot-linux-arm64 src/EllieBot/EllieBot.csproj Write-Output "" + Write-Output "Compiling the windows-x64 build" + Write-Output "" dotnet publish -c Release -r win-x64 --self-contained -o elliebot-windows-x64 src/EllieBot/EllieBot.csproj Write-Output "" + Write-Output "Compiling the windows-arm64 build" + Write-Output "" dotnet publish -c Release -r win-arm64 --self-contained -o elliebot-windows-arm64 src/EllieBot/EllieBot.csproj Write-Output "" + Write-Output "Compiling the osx-x64 build" + Write-Output "" dotnet publish -c Release -r osx-x64 --self-contained -o elliebot-osx-x64 src/EllieBot/EllieBot.csproj Write-Output "" + Write-Output "Compiling the osx-arm64 build" + Write-Output "" dotnet publish -c Release -r osx-arm64 --self-contained -o elliebot-osx-arm64 src/EllieBot/EllieBot.csproj Write-Output ""