align interface fields with action inputs

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2024-05-02 15:15:36 +02:00
parent 35800c73fa
commit ae29a82e5c
3 changed files with 8 additions and 8 deletions

View File

@@ -21,7 +21,7 @@ actionsToolkit.run(
async () => {
const inputs: context.Inputs = await context.getInputs();
const toolkit = new Toolkit();
const gitAuthToken = process.env.BUILDX_BAKE_GIT_AUTH_TOKEN ?? inputs.githubToken;
const gitAuthToken = process.env.BUILDX_BAKE_GIT_AUTH_TOKEN ?? inputs['github-token'];
await core.group(`GitHub Actions runtime token ACs`, async () => {
try {
@@ -82,7 +82,7 @@ actionsToolkit.run(
{
files: inputs.files,
load: inputs.load,
noCache: inputs.noCache,
noCache: inputs['no-cache'],
overrides: inputs.set,
provenance: inputs.provenance,
push: inputs.push,