From bcf5ca4df42e83c6f51e116f11a83e10a5dd3e66 Mon Sep 17 00:00:00 2001 From: Pallav Vasa Date: Fri, 23 May 2025 09:44:24 +0000 Subject: [PATCH] chore: add tasks to generate user keys --- .vscode/tasks.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.vscode/tasks.json b/.vscode/tasks.json index c3add93..b040b3a 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -25,6 +25,14 @@ "problemMatcher": [], "detail": "Copy podman_access as authorized_keys to mypodmanuser:$HOME/.ssh" }, + { + "label": "Generate user keys", + "type": "shell", + "command": ".bin/generate-keys.sh ${input:workspace}", + "group": "build", + "problemMatcher": [], + "detail": "Generate user keys" + }, { "label": "Cleanup worktree", "type": "shell", @@ -33,5 +41,12 @@ "detail": "delete all untracked files listed in .gitignore" } ], - "inputs": [] + "inputs": [ + { + "id": "workspace", + "type": "promptString", + "description": "name of workspace", + "default": "" + } + ] }