mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-08 10:01:34 +00:00
Add extra-args input for build using dockerfile (#53)
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
b78bde0b60
commit
2f7f68ec84
10 changed files with 59 additions and 5 deletions
|
@ -1,3 +1,8 @@
|
|||
/***************************************************************************************************
|
||||
* Copyright (c) Red Hat, Inc. All rights reserved.
|
||||
* Licensed under the MIT License. See LICENSE file in the project root for license information.
|
||||
**************************************************************************************************/
|
||||
|
||||
import * as ini from "ini";
|
||||
import { promises as fs } from "fs";
|
||||
import * as core from "@actions/core";
|
||||
|
@ -54,3 +59,7 @@ export async function findFuseOverlayfsPath(): Promise<string | undefined> {
|
|||
|
||||
return fuseOverlayfsPath;
|
||||
}
|
||||
|
||||
export function splitByNewline(s: string): string[] {
|
||||
return s.split(/\r?\n/);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue