diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index e817e36f7d6..b138eeaa4fc 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -20,6 +20,9 @@ jobs: go-version: stable cache: true - uses: arduino/setup-task@e26d8975574116b0097a1161e0fe16ba75d84c1c # v1 + with: + version: 3.x + repo-token: ${{ secrets.GITHUB_TOKEN }} - run: task docs:releases env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/www/docs/static/schema-pro.json b/www/docs/static/schema-pro.json index 38dafe6ed7d..c7c4f79572c 100644 --- a/www/docs/static/schema-pro.json +++ b/www/docs/static/schema-pro.json @@ -769,6 +769,9 @@ }, "file_info": { "$ref": "#/$defs/ContentFileInfo" + }, + "expand": { + "type": "boolean" } }, "additionalProperties": false, @@ -901,7 +904,13 @@ "type": "array" }, "use": { - "type": "string" + "type": "string", + "enum": [ + "docker", + "buildx", + "podman" + ], + "default": "docker" }, "templated_files": { "items": { @@ -2406,6 +2415,13 @@ }, "Project": { "properties": { + "version": { + "type": "integer", + "enum": [ + 1 + ], + "default": 1 + }, "project_name": { "type": "string" },