diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 60a24aa..5efb620 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -97,6 +97,7 @@ jobs: with: publish-features: "true" base-path-to-features: "./features/src" + disable-repo-tagging: "true" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -107,6 +108,7 @@ jobs: with: publish-templates: "true" base-path-to-templates: "./templates/src" + disable-repo-tagging: "true" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 1bb7bbe..bb51188 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -40,6 +40,55 @@ "Local Smoke Test GZ: Assert" ], "problemMatcher": [] + }, + { + "label": "Generate Feature Docs", + "type": "process", + "command": "devcontainer", + "args": [ + "features", + "generate-docs", + "--project-folder", + "./features/src", + "--namespace", + "althack/devcontainers", + "--github-owner", + "althack", + "--github-repo", + "devcontainers" + ], + "options": { + "cwd": "${workspaceFolder}" + }, + "problemMatcher": [] + }, + { + "label": "Generate Template Docs", + "type": "process", + "command": "devcontainer", + "args": [ + "templates", + "generate-docs", + "--project-folder", + "./templates/src", + "--github-owner", + "althack", + "--github-repo", + "devcontainers" + ], + "options": { + "cwd": "${workspaceFolder}" + }, + "problemMatcher": [] + }, + { + "label": "Generate Docs", + "dependsOrder": "sequence", + "dependsOn": [ + "Generate Feature Docs", + "Generate Template Docs" + ], + "problemMatcher": [] } ] }