diff --git a/tools/deploy.ps1 b/tools/deploy.ps1 index 330c8522b..7b82b0917 100644 --- a/tools/deploy.ps1 +++ b/tools/deploy.ps1 @@ -210,6 +210,17 @@ function Initialize-ScriptVariables { } } +# Print warning about Gentoo ebuild +function Write-GentooEbuildWarning { + [OutputType([void])] + Param() + + NewLine + Write-Host 'Create a new tinyorm Gentoo ebuild after bumping TinyOrm version number' ` + -ForegroundColor Red + NewLine +} + # Determine whether the deploy.ps1 script was executed from the TinyORM root folder (contains # the .git/ folder) function Test-GitRoot { @@ -1733,6 +1744,9 @@ Invoke-UpdateVcpkgPorts # Merge develop to main and and push to origin/main Invoke-MergeDevelopAndDeploy -Message 'Vcpkg ports were updated and deployed successfully. 🥳' +# Warnings on what must be done after the deployment +Write-GentooEbuildWarning + <# .Synopsis The TinyORM library bumping version numbers and deployment script