diff --git a/README.md b/README.md
index 94d667f..7f26ea4 100644
--- a/README.md
+++ b/README.md
@@ -15,8 +15,12 @@ Buildah only works on Linux. GitHub's [Ubuntu Environments](https://github.com/a
After building your image, use [push-to-registry](https://github.com/redhat-actions/push-to-registry) to push the image and make it pullable.
+
+
## Action Inputs
+
+
### Inputs for build from dockerfile
| Input Name | Description | Default |
@@ -29,6 +33,8 @@ After building your image, use [push-to-registry](https://github.com/redhat-acti
| 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`
+
+
### Inputs for build without dockerfile
| Input Name | Description | Default |
@@ -45,6 +51,8 @@ After building your image, use [push-to-registry](https://github.com/redhat-acti
| tags | The tags of the image to build. For multiple tags, separate by a space. For example, `latest ${{ github.sha }}` | `latest`
| workdir | The working directory to use within the container. | None
+
+
## Action Outputs
`image`: The name of the built image.
@@ -53,10 +61,14 @@ For example, `spring-image`.
`tags`: A list of the tags that were created, separated by spaces.
For example, `latest ${{ github.sha }}`.
+
+
## Build Types
You can configure the `buildah` action to build your image using one or more Dockerfiles, or none at all.
+
+
### Building using Dockerfiles
If you have been building your images with an existing Dockerfile, `buildah` can reuse your Dockerfile.
@@ -85,6 +97,7 @@ jobs:
build-args: |
some_arg=some_value
```
+
### Building without a Dockerfile
@@ -129,6 +142,7 @@ jobs:
```
+
## Multi arch builds
If building for an architecture other than `amd64`, install `qemu-user-static` using the following command.