20250207.094650
All checks were successful
Release Creation / build (release) Successful in 24s

This commit is contained in:
2025-02-07 09:46:50 -06:00
parent 2dd53178cf
commit 859339b403
2 changed files with 6 additions and 3 deletions

5
.vscode/tasks.json vendored
View File

@@ -7,12 +7,13 @@
"label": "commit and new release",
"type": "shell",
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git add . && git commit -m \"$TAG\" && git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\"",
"problemMatcher":[]
"problemMatcher": []
},
{
"label": "new release",
"type": "shell",
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\""
"command": "TAG=$(date +\"%Y%m%d.%H%M%S\"); git push origin main && tea release create --title \"$TAG\" --tag=\"v$TAG\"",
"problemMatcher": []
}
]
}