mirror of https://github.com/actions/toolkit
using results URL to check ghes for artifact
parent
fe8c762d61
commit
b680ef8e68
|
@ -12,15 +12,11 @@ describe('isGhes', () => {
|
|||
expect(config.isGhes()).toBe(false)
|
||||
})
|
||||
|
||||
it('should return false when the request domain ends with ghe.com', () => {
|
||||
process.env.GITHUB_SERVER_URL = 'https://github.ghe.com'
|
||||
it('should return false when the request has ACTIONS_RESULTS_URL set', () => {
|
||||
process.env.ACTIONS_RESULTS_URL = 'my.results.url'
|
||||
expect(config.isGhes()).toBe(false)
|
||||
})
|
||||
|
||||
it('should return false when the request domain ends with ghe.localhost', () => {
|
||||
process.env.GITHUB_SERVER_URL = 'https://github.ghe.localhost'
|
||||
expect(config.isGhes()).toBe(false)
|
||||
})
|
||||
|
||||
it('should return false when the request domain is specific to an enterprise', () => {
|
||||
process.env.GITHUB_SERVER_URL = 'https://my-enterprise.github.com'
|
||||
|
|
|
@ -28,15 +28,10 @@ export function isGhes(): boolean {
|
|||
process.env['GITHUB_SERVER_URL'] || 'https://github.com'
|
||||
)
|
||||
|
||||
let githubHosts = [
|
||||
'GITHUB.COM',
|
||||
'GITHUB.GHE.COM',
|
||||
'GITHUB.GHE.LOCALHOST'
|
||||
];
|
||||
const isGitHubHost = (ghUrl.hostname.trimEnd().toUpperCase() === 'GITHUB.COM')
|
||||
const isResultsServiceRequest = process.env['ACTIONS_RESULTS_URL'] != undefined
|
||||
|
||||
const hostname = ghUrl.hostname.trimEnd().toUpperCase()
|
||||
|
||||
return !githubHosts.includes(hostname)
|
||||
return !isGitHubHost && !isResultsServiceRequest
|
||||
}
|
||||
|
||||
export function getGitHubWorkspaceDir(): string {
|
||||
|
|
Loading…
Reference in New Issue