Resolve reviews

This commit is contained in:
divyansh42 2021-09-14 20:24:30 +05:30
parent 687dc7101f
commit ea4cffd3a6
4 changed files with 3 additions and 4 deletions

View file

@ -34,7 +34,7 @@ After building your image, use [push-to-registry](https://github.com/redhat-acti
| layers | Set to true to cache intermediate layers during the build process. | None
| oci | Build the image using the OCI format, instead of the Docker format. By default, this is `false`, because images built using the OCI format have issues when published to Dockerhub. | `false`
| tags | The tags of the image to build. For multiple tags, separate by a space. For example, `latest ${{ github.sha }}` | `latest`
> *Input `containerfiles` was previously `dockerfiles`. Now input `dockerfiles` is supported alias of `containerfiles`. For details see the [linked issue](https://github.com/redhat-actions/buildah-build/issues/57).
> *The `containerfiles` input was previously `dockerfiles`. Now `dockerfiles` is an alias for `containerfiles`. For details see [the issue](https://github.com/redhat-actions/buildah-build/issues/57).
<a id="scratch-build-inputs"></a>

2
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -105,7 +105,6 @@ export function getInputList(name: string): string[] {
}
const splitItems = splitByNewline(items);
return splitItems
.filter((x) => x)
.reduce<string[]>(
(acc, line) => acc.concat(line).map((item) => item.trim()),
[],