We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd01ec0 commit e849759Copy full SHA for e849759
.github/nightly_matrix.php
@@ -57,9 +57,11 @@ function get_current_version(): array {
57
@unlink(get_branch_commit_cache_file_path());
58
}
59
$branch = $argv[3] ?? 'master';
60
-$branches = $branch === 'master'
61
- ? get_branches()
62
- : [['ref' => $branch, 'version' => get_current_version()]];
+// $branches = $branch === 'master'
+// ? get_branches()
+// : [['ref' => $branch, 'version' => get_current_version()]];
63
+
64
+$branches = get_branches();
65
66
$f = fopen(getenv('GITHUB_OUTPUT'), 'a');
67
fwrite($f, 'branches=' . json_encode($branches, JSON_UNESCAPED_SLASHES) . "\n");
0 commit comments