mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-08 01:49:03 +00:00
Fix OCI input detection
Signed-off-by: Tim Etchells <tetchell@redhat.com>
This commit is contained in:
parent
79eee840ca
commit
27067e030d
4 changed files with 4 additions and 4 deletions
|
@ -20,7 +20,7 @@ export async function run(): Promise<void> {
|
|||
let dockerFiles = getInputList('dockerfiles');
|
||||
const newImage = `${core.getInput('image', { required: true })}:${core.getInput('tag', { required: true })}`;
|
||||
|
||||
const useOCI = core.getInput("useOCI") === "true";
|
||||
const useOCI = core.getInput("oci") == "true";
|
||||
|
||||
if (dockerFiles.length !== 0) {
|
||||
await doBuildUsingDockerFiles(cli, newImage, workspace, dockerFiles, useOCI);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue