Compare commits

...

2 commits

Author SHA1 Message Date
Alex Tran
fbebf19b03 test 2023-08-03 09:30:08 -05:00
Alex Tran
1c4267583c test 2023-08-03 09:29:35 -05:00
2 changed files with 2 additions and 2 deletions

View file

@ -112,7 +112,7 @@ jobs:
labels: ${{ steps.metadata.outputs.labels }}
build_and_push_server_arm_64:
runs-on: self-hosted
runs-on: macos-latest
strategy:
# Prevent a failure in one image from stopping the other builds
fail-fast: false

View file

@ -31,5 +31,5 @@ export async function bootstrap() {
const server = await app.listen(port);
server.requestTimeout = 30 * 60 * 1000;
logger.log(`Immich Server is listening on ${await app.getUrl()} [v${SERVER_VERSION}] [${envName}] `);
logger.log(`Immich Server is listening loudly on ${await app.getUrl()} [v${SERVER_VERSION}] [${envName}] `);
}