Remove GitHub Cache support for now (future release or buildkit cache provider?)

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2020-08-17 18:35:15 +02:00
parent 2962fe9789
commit 44d05b9191
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
9 changed files with 32 additions and 54196 deletions

View file

@ -17,7 +17,6 @@ export interface Inputs {
outputs: string[];
cacheFrom: string[];
cacheTo: string[];
cacheGithub: boolean;
}
export async function getInputs(): Promise<Inputs> {
@ -37,8 +36,7 @@ export async function getInputs(): Promise<Inputs> {
push: /true/i.test(core.getInput('push')),
outputs: await getInputList('outputs'),
cacheFrom: await getInputList('cache-from'),
cacheTo: await getInputList('cache-to'),
cacheGithub: /true/i.test(core.getInput('cache-github'))
cacheTo: await getInputList('cache-to')
};
}