Skip to content

Commit 18c554f

Browse files
committed
Raise error when no token is provided
1 parent 471e391 commit 18c554f

File tree

3 files changed

+8
-25
lines changed

3 files changed

+8
-25
lines changed

package-lock.json

-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
"@actions/github": "^6.0.0",
88
"@actions/glob": "^0.5.0",
99
"@actions/tool-cache": "^2.0.1",
10-
"@octokit/auth-unauthenticated": "^5.0.1",
1110
"@vercel/ncc": "^0.38.1",
1211
"semver": "^7.5.4"
1312
},

src/main.ts

+8-10
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,17 @@ import * as github from "@actions/github";
66
import * as glob from "@actions/glob";
77
import * as tc from "@actions/tool-cache";
88
import fs from "fs";
9-
import { createUnauthenticatedAuth } from "@octokit/auth-unauthenticated";
109
import * as os from "os";
1110
import { join } from "node:path";
1211
import { exit } from "process";
1312
import * as semver from "semver";
1413

15-
const octokit = core.getInput("token")
16-
? github.getOctokit(core.getInput("token"))
17-
: github.getOctokit(undefined!, {
18-
authStrategy: createUnauthenticatedAuth,
19-
auth: { reason: "no 'token' input" },
20-
});
21-
14+
const token = core.getInput("token");
15+
if (!token) {
16+
core.setFailed('GitHub token is required.');
17+
process.exit(1);
18+
}
19+
const octokit = github.getOctokit(token);
2220
const repoSet = {
2321
owner: "typst",
2422
repo: "typst",
@@ -82,7 +80,7 @@ if (cachePackage) {
8280
linux: () =>
8381
join(
8482
process.env.XDG_CACHE_HOME ||
85-
(os.homedir() ? join(os.homedir(), ".cache") : undefined)!,
83+
(os.homedir() ? join(os.homedir(), ".cache") : undefined)!,
8684
"typst/packages",
8785
),
8886
darwin: () => join(process.env.HOME!, "Library/Caches", "typst/packages"),
@@ -109,7 +107,7 @@ if (cachePackage) {
109107
}
110108
} else {
111109
core.warning(
112-
`${cachePackage} was not found. Packages will not be cached.`,
110+
`${cachePackage} is not found. Packages will not be cached.`,
113111
);
114112
}
115113
}

0 commit comments

Comments
 (0)