blog/.vscode/tasks.json
Radu C. Martin 6406d33d9f
Some checks failed
Build and publish docker image / Build Jekyll Site (push) Successful in 19s
Build and publish docker image / Build Docker Image (push) Failing after 1m3s
feat: initial commit
2025-04-04 23:02:30 +02:00

26 lines
555 B
JSON

{
"version": "2.0.0",
"tasks": [
{
"label": "Run Jekyll Server",
"type": "shell",
"command": "./tools/run.sh",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"detail": "Runs the Jekyll server with live reload."
},
{
"label": "Build Jekyll Site",
"type": "shell",
"command": "./tools/test.sh",
"group": {
"kind": "build"
},
"problemMatcher": [],
"detail": "Build the Jekyll site for production."
}
]
}