enforce baseUrl to api.github.com if action used on GHES

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
pull/192/head
CrazyMax 1 year ago
parent a024221c60
commit a8165e7b70
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7

@ -10,7 +10,9 @@ const [owner, repo] = 'docker/buildx'.split('/');
export const getReleaseTag = async (tag: string, githubToken: string): Promise<Release> => {
return (
await github
.getOctokit(githubToken)
.getOctokit(githubToken, {
baseUrl: 'https://api.github.com'
})
.rest.repos.getReleaseByTag({
owner,
repo,
@ -25,7 +27,9 @@ export const getReleaseTag = async (tag: string, githubToken: string): Promise<R
export const getLatestRelease = async (githubToken: string): Promise<Release> => {
return (
await github
.getOctokit(githubToken)
.getOctokit(githubToken, {
baseUrl: 'https://api.github.com'
})
.rest.repos.getLatestRelease({
owner,
repo

Loading…
Cancel
Save