Added comments to the script so you know what build it is working on in the earlier parts of the release section.

This commit is contained in:
Toastie 2024-09-24 23:58:51 +12:00
parent c758860fe7
commit e06ca0e2e3
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4

View file

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