Skip to content

Commit 7250f1e

Browse files
committed
Adapt release-gathering script to also account for switch to "main" branch.
1 parent 6ef8766 commit 7250f1e

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

get-releases.mjs

+6-7
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@ const { data } = await octokit.rest.repos.listReleases({
1717
per_page: 50,
1818
});
1919

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) => {
2222
return (
23-
r.target_commitish === "master" &&
23+
(r.target_commitish === "master" || r.target_commitish === "main") &&
2424
r.assets.find((a) => a.name.endsWith("-javadoc.jar"))
2525
);
2626
});
2727

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!)");
3030
}
3131

3232
// Find the javadoc jar
33-
const javadocJar = masterRelease.assets.find((a) =>
33+
const javadocJar = mainRelease.assets.find((a) =>
3434
a.name.endsWith("-javadoc.jar")
3535
);
3636
if (!javadocJar) {
@@ -55,7 +55,6 @@ zip.extractAllTo("public/javadoc/", true);
5555
const apiContent = await octokit.repos.getContent({
5656
...repoInfo,
5757
path: "API.md",
58-
ref: "master",
5958
headers: {
6059
accept: "application/vnd.github.v3.raw",
6160
},

0 commit comments

Comments
 (0)