chore: upgrade 7.2.0
All checks were successful
/ build-jeykll (push) Successful in 1m48s
/ build-docker (push) Successful in 34s
/ publish (push) Successful in 56s

This commit is contained in:
2024-11-28 21:53:07 +10:00
parent 0485a32f04
commit fb134b0f72
11 changed files with 219 additions and 0 deletions

26
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,26 @@
{
"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."
}
]
}