mirror of
https://github.com/thegeeklab/wp-docker-buildx.git
synced 2024-11-28 18:20:35 +00:00
[skip ci] auto-update documentation
This commit is contained in:
parent
ba6648f769
commit
13b2057c38
@ -34,13 +34,38 @@ properties:
|
|||||||
|
|
||||||
- name: build_args
|
- name: build_args
|
||||||
description: |
|
description: |
|
||||||
Custom build arguments for the build.
|
Custom build arguments for the build. Example:
|
||||||
type: list
|
|
||||||
|
```yaml
|
||||||
|
steps:
|
||||||
|
- name: Build
|
||||||
|
image: quay.io/thegeeklab/wp-docker-buildx
|
||||||
|
settings:
|
||||||
|
repo: example/repo
|
||||||
|
build_args:
|
||||||
|
FOO: bar
|
||||||
|
API_KEY:
|
||||||
|
from_secret: API_KEY
|
||||||
|
```
|
||||||
|
type: map
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
- name: build_args_from_env
|
- name: build_args_from_env
|
||||||
description: |
|
description: |
|
||||||
Forward environment variables as custom arguments to the build.
|
Forward environment variables to the build as build arguments. If the same key
|
||||||
|
already exists in `build_args`, it will not be overwritten. Example:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
steps:
|
||||||
|
- name: Build
|
||||||
|
image: quay.io/thegeeklab/wp-docker-buildx
|
||||||
|
environment:
|
||||||
|
CUSTOM_ENVIRONMENT: custom_value
|
||||||
|
settings:
|
||||||
|
repo: example/repo
|
||||||
|
build_args_from_env:
|
||||||
|
- CUSTOM_ENVIRONMENT
|
||||||
|
```
|
||||||
type: list
|
type: list
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user