1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00

docs: update

Signed-off-by: Carlos A Becker <caarlos0@gmail.com>
This commit is contained in:
Carlos A Becker 2021-12-06 17:23:04 -03:00
parent f01c60026c
commit ab879cb9f9
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
3 changed files with 11 additions and 13 deletions

View File

@ -27,7 +27,7 @@ single .goreleaser.yml file.
* [goreleaser build](/cmd/goreleaser_build/) - Builds the current project
* [goreleaser check](/cmd/goreleaser_check/) - Checks if configuration is valid
* [goreleaser completion](/cmd/goreleaser_completion/) - generate the autocompletion script for the specified shell
* [goreleaser init](/cmd/goreleaser_init/) - Generates a .goreleaser.yml file
* [goreleaser init](/cmd/goreleaser_init/) - Generates a .goreleaser.yaml file
* [goreleaser jsonschema](/cmd/goreleaser_jsonschema/) - outputs goreleaser's JSON schema
* [goreleaser release](/cmd/goreleaser_release/) - Releases the current project

View File

@ -1,6 +1,6 @@
# goreleaser init
Generates a .goreleaser.yml file
Generates a .goreleaser.yaml file
```
goreleaser init [flags]
@ -9,7 +9,7 @@ goreleaser init [flags]
## Options
```
-f, --config string Load configuration from file (default ".goreleaser.yml")
-f, --config string Load configuration from file (default ".goreleaser.yaml")
-h, --help help for init
```

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

@ -938,23 +938,17 @@
]
},
"IgnoredBuild": {
"required": [
"Goos",
"Goarch",
"Goarm",
"Gomips"
],
"properties": {
"Goos": {
"goos": {
"type": "string"
},
"Goarch": {
"goarch": {
"type": "string"
},
"Goarm": {
"goarm": {
"type": "string"
},
"Gomips": {
"gomips": {
"type": "string"
}
},
@ -1883,6 +1877,7 @@
},
"mode": {
"enum": [
"keep-existing",
"append",
"prepend",
"replace"
@ -2054,6 +2049,9 @@
},
"certificate": {
"type": "string"
},
"output": {
"type": "boolean"
}
},
"additionalProperties": false,