mirror of
https://github.com/actions/cache.git
synced 2025-04-21 19:46:46 +00:00
No-op on GHES
This commit is contained in:
parent
eed9cfe64d
commit
4d604c6cce
5 changed files with 60 additions and 0 deletions
|
@ -2,6 +2,13 @@ import * as core from "@actions/core";
|
|||
|
||||
import { Outputs, RefKey, State } from "../constants";
|
||||
|
||||
export function isGhes(): boolean {
|
||||
const ghUrl = new URL(
|
||||
process.env["GITHUB_SERVER_URL"] || "https://github.com"
|
||||
);
|
||||
return ghUrl.hostname.toUpperCase() !== "GITHUB.COM";
|
||||
}
|
||||
|
||||
export function isExactKeyMatch(key: string, cacheKey?: string): boolean {
|
||||
return !!(
|
||||
cacheKey &&
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue