1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-02-03 13:11:48 +02:00

docs: update

Signed-off-by: Carlos A Becker <caarlos0@users.noreply.github.com>
This commit is contained in:
Carlos A Becker 2023-03-01 01:45:52 -03:00
parent 53838da8ac
commit adc279a15c
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
4 changed files with 36 additions and 4 deletions

View File

@ -66,3 +66,6 @@ furies:
[fury]: https://gemfury.com
!!! tip
Learn more about the [name template engine](/customization/templates/).

View File

@ -1,6 +1,6 @@
# Docker Images with Ko
> Since v1.15.
> Since v1.15.0.
You can also use [ko][] to build and publish Docker container images.
@ -10,9 +10,9 @@ options as the [build][] pipe when possible, so the results will probably be
cached.
!!! warning
Ko only runs on the publish phase, so it might be a bit hard to test — you
might need to push to a fake repository (or a fake tag) when playing around
with its configuration.
Ko only runs on the publishing phase, so it might be a bit hard to test —
you might need to push to a fake repository (or a fake tag) when playing
around with its configuration.
```yaml
# .goreleaser.yaml

28
www/docs/static/schema-pro.json generated vendored
View File

@ -2259,6 +2259,12 @@
"git": {
"$ref": "#/$defs/Git"
},
"template_files": {
"items": {
"$ref": "#/$defs/TemplateFile"
},
"type": "array"
},
"universal_binaries": {
"items": {
"$ref": "#/$defs/UniversalBinary"
@ -3072,6 +3078,28 @@
"additionalProperties": false,
"type": "object"
},
"TemplateFile": {
"properties": {
"id": {
"type": "string"
},
"src": {
"type": "string"
},
"dst": {
"type": "string"
},
"mode": {
"type": "integer"
}
},
"additionalProperties": false,
"type": "object",
"required": [
"src",
"dst"
]
},
"Twitter": {
"properties": {
"enabled": {

View File

@ -93,6 +93,7 @@ nav:
- customization/dist.md
- customization/project.md
- customization/git.md
- customization/templatefiles.md
- Build:
- customization/builds.md
- customization/verifiable_builds.md