chore: add tasks to generate user keys

This commit is contained in:
Pallav Vasa 2025-05-23 09:44:24 +00:00
parent 622cfd22ee
commit bcf5ca4df4

17
.vscode/tasks.json vendored
View File

@ -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": ""
}
]
}