chore(release): bump Coolify and nightly versions

This commit is contained in:
Andras Bacsai
2026-08-16 09:31:37 +02:00
parent ead8fcd41a
commit 4c22919d38
4 changed files with 11 additions and 6 deletions
+6 -1
View File
@@ -4,6 +4,8 @@ it('publishes v4 branch builds under the commit sha with a traceable internal ve
$workflow = file_get_contents(dirname(__DIR__, 2).'/.github/workflows/coolify-sha-build.yml');
$dockerfile = file_get_contents(dirname(__DIR__, 2).'/docker/production/Dockerfile');
$constants = file_get_contents(dirname(__DIR__, 2).'/config/constants.php');
$versions = json_decode(file_get_contents(dirname(__DIR__, 2).'/versions.json'), true, flags: JSON_THROW_ON_ERROR);
$nightlyVersions = json_decode(file_get_contents(dirname(__DIR__, 2).'/other/nightly/versions.json'), true, flags: JSON_THROW_ON_ERROR);
expect($workflow)
->toContain('name: Build Coolify (SHA)')
@@ -21,7 +23,10 @@ it('publishes v4 branch builds under the commit sha with a traceable internal ve
->toContain('ARG COOLIFY_VERSION')
->toContain('ENV COOLIFY_VERSION=${COOLIFY_VERSION}')
->and($constants)
->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.4'");
->toContain("'version' => env('COOLIFY_VERSION') ?: '4.3.5'")
->and($versions['coolify']['v4']['version'])->toBe('4.3.5')
->and($versions['coolify']['nightly']['version'])->toBe('4.3.6')
->and($nightlyVersions)->toBe($versions);
});
it('orders a maintenance development build before its stable release', function () {