20250207.082811
Some checks failed
Release Creation / build (release) Failing after 22s

This commit is contained in:
2025-02-07 08:28:11 -06:00
parent a6278772fc
commit b8ac60b8a2
3 changed files with 19 additions and 1 deletions

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

@@ -0,0 +1,13 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "new release",
"type": "shell",
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git add . && git commit -m \"$TAG\" && git tag \"v$TAG\" && git push origin main --tags && tea release create --title \"$TAG\" --tag=\"$TAG\"",
"problemMatcher":[]
}
]
}