chore: auto-update generated files

This commit is contained in:
actions-user
2024-04-03 02:35:12 +00:00
parent 6353982e33
commit b9dc6dfe1a
6 changed files with 85 additions and 10 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
src = ./.; src = ./.;
ldflags = [ "-s" "-w" "-X main.version=dev" "-X main.builtBy=flake" ]; ldflags = [ "-s" "-w" "-X main.version=dev" "-X main.builtBy=flake" ];
doCheck = false; doCheck = false;
vendorHash = "sha256-ND9owINZcsEBa1EmLCO40UdQ/11StPheQLJP6Ax13Mw="; vendorHash = "";
}; };
devShells.default = pkgs.mkShellNoCC { devShells.default = pkgs.mkShellNoCC {
+1 -1
View File
@@ -1 +1 @@
v1.24.0 v1.25.0
+1 -1
View File
@@ -1 +1 @@
v1.24.0-pro v1.25.0-pro
+3
View File
@@ -1,4 +1,7 @@
[ [
{
"tag_name": "v1.25.0-pro"
},
{ {
"tag_name": "v1.24.0-pro" "tag_name": "v1.24.0-pro"
}, },
+3
View File
@@ -1,4 +1,7 @@
[ [
{
"tag_name": "v1.25.0"
},
{ {
"tag_name": "v1.24.0" "tag_name": "v1.24.0"
}, },
+76 -7
View File
@@ -208,7 +208,7 @@
} }
] ]
}, },
"strip_parent_binary_folder": { "strip_binary_directory": {
"type": "boolean" "type": "boolean"
}, },
"files": { "files": {
@@ -233,6 +233,9 @@
} }
], ],
"description": "you can now remove this" "description": "you can now remove this"
},
"strip_parent_binary_folder": {
"type": "boolean"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -264,7 +267,7 @@
"disable_ssl": { "disable_ssl": {
"type": "boolean" "type": "boolean"
}, },
"folder": { "directory": {
"type": "string" "type": "string"
}, },
"kms_key": { "kms_key": {
@@ -310,6 +313,9 @@
"content_disposition": { "content_disposition": {
"type": "string" "type": "string"
}, },
"include_meta": {
"type": "boolean"
},
"disableSSL": { "disableSSL": {
"type": "boolean", "type": "boolean",
"description": "use disable_ssl instead" "description": "use disable_ssl instead"
@@ -317,6 +323,9 @@
"kmskey": { "kmskey": {
"type": "string", "type": "string",
"description": "use kms_key instead" "description": "use kms_key instead"
},
"folder": {
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -407,6 +416,7 @@
"enum": [ "enum": [
"c-archive", "c-archive",
"c-shared", "c-shared",
"pie",
"" ""
], ],
"default": "" "default": ""
@@ -471,6 +481,7 @@
"enum": [ "enum": [
"c-archive", "c-archive",
"c-shared", "c-shared",
"pie",
"" ""
], ],
"default": "" "default": ""
@@ -593,6 +604,9 @@
"algorithm": { "algorithm": {
"type": "string" "type": "string"
}, },
"split": {
"type": "boolean"
},
"ids": { "ids": {
"items": { "items": {
"type": "string" "type": "string"
@@ -1070,7 +1084,8 @@
"gz", "gz",
"tar.xz", "tar.xz",
"txz", "txz",
"binary" "binary",
"none"
], ],
"default": "tar.gz" "default": "tar.gz"
} }
@@ -1186,6 +1201,9 @@
}, },
"mod": { "mod": {
"type": "string" "type": "string"
},
"dir": {
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -1205,7 +1223,7 @@
"commit_msg_template": { "commit_msg_template": {
"type": "string" "type": "string"
}, },
"folder": { "directory": {
"type": "string" "type": "string"
}, },
"caveats": { "caveats": {
@@ -1260,6 +1278,12 @@
"url_template": { "url_template": {
"type": "string" "type": "string"
}, },
"url_headers": {
"items": {
"type": "string"
},
"type": "array"
},
"custom_require": { "custom_require": {
"type": "string" "type": "string"
}, },
@@ -1295,6 +1319,9 @@
"plist": { "plist": {
"type": "string", "type": "string",
"description": "use service instead" "description": "use service instead"
},
"folder": {
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -1732,7 +1759,14 @@
}, },
"formats": { "formats": {
"items": { "items": {
"type": "string" "type": "string",
"enum": [
"apk",
"deb",
"rpm",
"termux.deb",
"archlinux"
]
}, },
"type": "array" "type": "array"
}, },
@@ -1858,6 +1892,27 @@
"type": "string" "type": "string"
}, },
"type": "array" "type": "array"
},
"compression": {
"type": "string",
"enum": [
"gzip",
"xz",
"none"
],
"default": "gzip"
},
"fields": {
"additionalProperties": {
"type": "string"
},
"type": "object"
},
"predepends": {
"items": {
"type": "string"
},
"type": "array"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -2450,6 +2505,9 @@
"signature": { "signature": {
"type": "boolean" "type": "boolean"
}, },
"meta": {
"type": "boolean"
},
"dir": { "dir": {
"type": "string" "type": "string"
}, },
@@ -2631,6 +2689,12 @@
"replace" "replace"
], ],
"default": "keep-existing" "default": "keep-existing"
},
"replace_existing_artifacts": {
"type": "boolean"
},
"include_meta": {
"type": "boolean"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -2770,7 +2834,7 @@
"repository": { "repository": {
"$ref": "#/$defs/RepoRef" "$ref": "#/$defs/RepoRef"
}, },
"folder": { "directory": {
"type": "string" "type": "string"
}, },
"commit_author": { "commit_author": {
@@ -2840,6 +2904,9 @@
"bucket": { "bucket": {
"$ref": "#/$defs/RepoRef", "$ref": "#/$defs/RepoRef",
"description": "use repository instead" "description": "use repository instead"
},
"folder": {
"type": "string"
} }
}, },
"additionalProperties": false, "additionalProperties": false,
@@ -3486,6 +3553,9 @@
"signature": { "signature": {
"type": "boolean" "type": "boolean"
}, },
"meta": {
"type": "boolean"
},
"custom_artifact_name": { "custom_artifact_name": {
"type": "boolean" "type": "boolean"
}, },
@@ -3623,7 +3693,6 @@
"additionalProperties": false, "additionalProperties": false,
"type": "object", "type": "object",
"required": [ "required": [
"name",
"publisher", "publisher",
"repository", "repository",
"short_description", "short_description",