Skip to content

Commit e849759

Browse files
committed
Run for all branches
1 parent cd01ec0 commit e849759

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/nightly_matrix.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ function get_current_version(): array {
5757
@unlink(get_branch_commit_cache_file_path());
5858
}
5959
$branch = $argv[3] ?? 'master';
60-
$branches = $branch === 'master'
61-
? get_branches()
62-
: [['ref' => $branch, 'version' => get_current_version()]];
60+
// $branches = $branch === 'master'
61+
// ? get_branches()
62+
// : [['ref' => $branch, 'version' => get_current_version()]];
63+
64+
$branches = get_branches();
6365

6466
$f = fopen(getenv('GITHUB_OUTPUT'), 'a');
6567
fwrite($f, 'branches=' . json_encode($branches, JSON_UNESCAPED_SLASHES) . "\n");

0 commit comments

Comments
 (0)