set repository and ghtoken attributes for gha cache type

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2024-06-10 15:26:39 +02:00
parent 1a162644f9
commit 522345f555
No known key found for this signature in database
GPG key ID: ADE44D8C9D44FBE4
2 changed files with 22 additions and 1 deletions

View file

@ -139,7 +139,7 @@ async function getBuildArgs(inputs: Inputs, context: string, toolkit: Toolkit):
args.push('--cache-from', cacheFrom);
});
await Util.asyncForEach(inputs['cache-to'], async cacheTo => {
args.push('--cache-to', cacheTo);
args.push('--cache-to', Build.resolveCacheToAttrs(cacheTo, inputs['github-token']));
});
if (inputs['cgroup-parent']) {
args.push('--cgroup-parent', inputs['cgroup-parent']);