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 ""