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
The option rewrites version numbers in the matrix to adhere strictly
to semver.
On https://go.dev/dl alpha and beta versions are named like
`1.18beta2`. We rewrite them into strict semver syntax:
E.g. `1.16` is rewritten `1.16.0` and `1.18beta2` to `1.18.0-beta2`.
The options default to being `false`.
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,10 @@ latest-patches-only:
60
60
description: When patch-level is true, only include the latest patch version of each major.minor version in the matrix. Does nothing if patch-level is false. Cannot be used with unstable.
61
61
required: false
62
62
default: 'false'
63
+
strict-semver:
64
+
default: Use strict semver version in matrix. E.g. `1.16` -> `1.16.0` and `1.18beta2` -> `1.18.0-beta.2`.
Copy file name to clipboardExpand all lines: action.yml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -26,6 +26,10 @@ inputs:
26
26
description: When patch-level is true, only include the latest patch version of each major.minor version in the matrix. Does nothing if patch-level is false. Cannot be used with unstable.
27
27
required: false
28
28
default: 'false'
29
+
strict-semver:
30
+
description: Use strict semver version in matrix. E.g. `1.16` -> `1.16.0` and `1.18beta2` -> `1.18.0-beta.2`.
0 commit comments