You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| **<code>runs-on</code>** | Json array of runner(s) to use. See <https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job> | <code>["ubuntu-latest"]</code> | **false** | **string** |
141
+
| **<code>runs-on</code>** | JSON array of runner(s) to use. See <https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job> | <code>["ubuntu-latest"]</code> | **false** | **string** |
142
142
| **<code>oci-registry</code>** | OCI registry where to pull and push images | <code>ghcr.io</code> | **false** | **string** |
143
143
| **<code>oci-registry-username</code>** | Username used to log against the OCI registry. See <https://github.com/docker/login-action#usage> | <code>${{ github.repository_owner }}</code> | **false** | **string** |
| **<code>build-secret-github-app-token-env</code>** | Environment variable name(s) to pass GitHub token generated by GitHub App. Can be a multiline string list. This is useful to pass a generated token to the build, as it is not possible to share generated secrets between jobs. Needs input `build-secret-github-app-id` and secret `build-secret-github-app-key`. | <code>GITHUB_APP_TOKEN</code> | **false** | **string** |
147
147
| **<code>build-secret-github-app-id</code>** | GitHub App ID to generate GitHub token to be passed as build secret env. See <https://github.com/actions/create-github-app-token>. | | **false** | **string** |
@@ -157,7 +157,7 @@ jobs:
157
157
| **<code>name</code>** | Image name. Must be unique. It is used as `image` in [Docker build-image action](../../actions/docker/build-image/README.md) | | **true** |
| **<code>dockerfile</code>** | Location of Dockerfile. See [Docker build-image action](../../actions/docker/build-image/README.md) | <code>Dockerfile</code> | **false** |
160
+
| **<code>Dockerfile</code>** | Location of Dockerfile. See [Docker build-image action](../../actions/docker/build-image/README.md) | <code>Dockerfile</code> | **false** |
161
161
| **<code>target</code>** | Sets the target stage to build. See [Docker build-image action](../../actions/docker/build-image/README.md) | | **true** |
162
162
| **<code>build-args</code>** | List of build-time variables. See [Docker build-image action](../../actions/docker/build-image/README.md) | | **false** |
163
163
| **<code>secret-envs</code>** | List of secret environment variables to expose to the build. See [Docker build-image action](../../actions/docker/build-image/README.md) | | **false** |
| **<code>runs-on</code>** | Json array of runner(s) to use. See <https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job> | | **false** |
171
+
| **<code>runs-on</code>** | JSON array of runner(s) to use. See <https://docs.github.com/en/actions/using-jobs/choosing-the-runner-for-a-job> | | **false** |
| **<code>prune-cache-images</code>** | Prune cache image tags (like "application-1/cache"). Useful when building image with "registry" cache backend. | <code>true</code> | **false** |
63
63
| **<code>prune-cache-images</code>** | The regular expression to match pull request tags. Must have a capture group for the pull request number. | <code>^pr-([0-9]+)(?:-\|$)</code> | **false** |
| <code>context</code> | Build's context is the set of files located in the specified PATH or URL.<br />See <https://github.com/docker/build-push-action#inputs>. | <code>.</code> | **false** |
130
-
| <code>dockerfile</code> | Location of Dockerfile (defaults to Dockerfile).<br />See <https://github.com/docker/build-push-action#inputs>. | <code>Dockerfile</code> | **false** |
130
+
| <code>Dockerfile</code> | Location of Dockerfile (defaults to Dockerfile).<br />See <https://github.com/docker/build-push-action#inputs>. | <code>Dockerfile</code> | **false** |
131
131
| <code>build-args</code> | List of build-time variables.<br />See <https://github.com/docker/build-push-action#inputs>. | | **false** |
132
132
| <code>target</code> | Sets the target stage to build.<br />See <https://github.com/docker/build-push-action#inputs>. | | **false** |
133
133
| <code>secrets</code> | List of secrets to expose to the build.<br />See <https://docs.docker.com/build/ci/github-actions/secrets/>. | | **false** |
0 commit comments