File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -17,20 +17,20 @@ const { data } = await octokit.rest.repos.listReleases({
17
17
per_page : 50 ,
18
18
} ) ;
19
19
20
- // Find the latest release from master that has javadocs attached
21
- const masterRelease = data . find ( ( r ) => {
20
+ // Find the latest release from main that has javadocs attached
21
+ const mainRelease = data . find ( ( r ) => {
22
22
return (
23
- r . target_commitish === "master" &&
23
+ ( r . target_commitish === "master" || r . target_commitish === "main" ) &&
24
24
r . assets . find ( ( a ) => a . name . endsWith ( "-javadoc.jar" ) )
25
25
) ;
26
26
} ) ;
27
27
28
- if ( masterRelease . length === 0 ) {
29
- throw new Error ( "Couldn't find latest master release!)" ) ;
28
+ if ( ! mainRelease ) {
29
+ throw new Error ( "Couldn't find latest master/main release!)" ) ;
30
30
}
31
31
32
32
// Find the javadoc jar
33
- const javadocJar = masterRelease . assets . find ( ( a ) =>
33
+ const javadocJar = mainRelease . assets . find ( ( a ) =>
34
34
a . name . endsWith ( "-javadoc.jar" )
35
35
) ;
36
36
if ( ! javadocJar ) {
@@ -55,7 +55,6 @@ zip.extractAllTo("public/javadoc/", true);
55
55
const apiContent = await octokit . repos . getContent ( {
56
56
...repoInfo ,
57
57
path : "API.md" ,
58
- ref : "master" ,
59
58
headers : {
60
59
accept : "application/vnd.github.v3.raw" ,
61
60
} ,
You can’t perform that action at this time.
0 commit comments