All checks were successful
Release Creation / build (release) Successful in 24s
19 lines
644 B
JSON
19 lines
644 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"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": []
|
|
},
|
|
{
|
|
"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\"",
|
|
"problemMatcher": []
|
|
}
|
|
]
|
|
} |