1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

docs: update

This commit is contained in:
Carlos Alexandro Becker 2024-08-05 23:35:20 -03:00
parent 2e88163095
commit 033f1d3616
No known key found for this signature in database
3 changed files with 26 additions and 3 deletions

View File

@ -20,7 +20,7 @@ nightly:
#
# Default: `{{ incpatch .Version }}-{{ .ShortCommit }}-nightly`.
# Templates: allowed.
name_template: "{{ incpatch .Version }}-devel"
version_template: "{{ incpatch .Version }}-devel"
# Tag name to create if publish_release is enabled.
tag_name: devel

View File

@ -21,7 +21,7 @@ Template for new deprecations:
### property
> since yyyy-mm-dd (v2.xx)
> since v2.xx
Description.
@ -39,9 +39,29 @@ Description.
-->
### nightly.name_template
> since v2.2
Property renamed so its easier to reason about.
=== "Before"
```yaml
nightly:
name_template: 'foo'
```
=== "After"
```yaml
nightly:
version_template: 'foo'
```
### snapshot.name_template
> since 2024-07-28 (v2.2)
> since v2.2
Property renamed so its easier to reason about.

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

@ -2706,6 +2706,9 @@
},
"Nightly": {
"properties": {
"version_template": {
"type": "string"
},
"name_template": {
"type": "string"
},