From 75d5619a8d164ac446f926cec4c03c9e605d738e Mon Sep 17 00:00:00 2001 From: David Stephens Date: Wed, 26 Dec 2018 11:56:57 +0000 Subject: [PATCH] Update vscode tasks to include mkdocs --- .vscode/tasks.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index af0532a0..2e0ded3f 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -22,10 +22,22 @@ } }, { - "label": "Run Ansible-Lint", + "label": "Run ansible-lint", "type": "shell", "command": "ansible-lint nas.yml", "group": "test" + }, + { + "label": "Serve docs locally (mkdocs serve)", + "type": "shell", + "command": "mkdocs serve", + "group": "test" + }, + { + "label": "Deploy docs to GitHub (mkdocs gh-deploy)", + "type": "shell", + "command": "mkdocs gh-deploy", + "group": "build" } ] } \ No newline at end of file