mirror of
https://github.com/redhat-actions/buildah-build.git
synced 2025-06-08 18:09:04 +00:00
Add --tls-verify and extra-args input for buildah from command (#95)
Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
parent
b053111d08
commit
df970b4ee2
7 changed files with 51 additions and 27 deletions
|
@ -62,7 +62,7 @@ export enum Inputs {
|
|||
*/
|
||||
ENVS = "envs",
|
||||
/**
|
||||
* Extra args to be passed to buildah bud.
|
||||
* Extra args to be passed to buildah bud and buildah from.
|
||||
* Separate arguments by newline. Do not use quotes - @actions/exec will do the quoting for you.
|
||||
* Required: false
|
||||
* Default: None.
|
||||
|
@ -118,6 +118,12 @@ export enum Inputs {
|
|||
* Default: "latest"
|
||||
*/
|
||||
TAGS = "tags",
|
||||
/**
|
||||
* Require HTTPS and verify certificates when accessing the registry. Defaults to true.
|
||||
* Required: false
|
||||
* Default: "true"
|
||||
*/
|
||||
TLS_VERIFY = "tls-verify",
|
||||
/**
|
||||
* The working directory to use within the container
|
||||
* Required: false
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue