dev: arm should be on next all the time

This commit is contained in:
Andras Bacsai 2022-09-10 07:41:36 +00:00
parent 21b4990652
commit d844026c29

View File

@ -26,7 +26,7 @@ export async function cleanupManually(request: FastifyRequest) {
}
export async function checkUpdate(request: FastifyRequest) {
try {
const isStaging = request.hostname === 'staging.coolify.io'
const isStaging = request.hostname === 'staging.coolify.io' || request.hostname === 'arm.coolify.io'
const currentVersion = version;
const { data: versions } = await axios.get(
`https://get.coollabs.io/versions.json?appId=${process.env['COOLIFY_APP_ID']}&version=${currentVersion}`