Website v3
All checks were successful
Queue Release Build / prepare (push) Successful in 39s
Deploy Web Apps / deploy (push) Successful in 16m30s
Queue Release Build / build-linux (push) Successful in 52m31s
Queue Release Build / build-windows (push) Successful in 36m48s
Queue Release Build / finalize (push) Successful in 3m20s

This commit is contained in:
2026-03-12 14:32:48 +01:00
parent 3c04b5db26
commit 7bf37ba510
3 changed files with 6 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ function buildDefaultServerUrl(): string {
/** Blueprint for the built-in default endpoint. */
const DEFAULT_ENDPOINT: Omit<ServerEndpoint, 'id'> = {
name: 'Local Server',
name: 'Default Server',
url: buildDefaultServerUrl(),
isActive: true,
isDefault: true,

View File

@@ -1,4 +1,4 @@
export const environment = {
production: true,
defaultServerUrl: 'https://tojusignal.azaaxin.com'
defaultServerUrl: 'https://signal.toju.app'
};

View File

@@ -34,6 +34,8 @@ function Invoke-RoboCopyMirror {
if ($LASTEXITCODE -gt 7) {
throw "robocopy failed from $Source to $Destination with exit code $LASTEXITCODE"
}
$global:LASTEXITCODE = 0
}
function Ensure-AppPool {
@@ -99,3 +101,5 @@ $deployments = @(
foreach ($deployment in $deployments) {
Publish-IisSite @deployment
}
$global:LASTEXITCODE = 0