Added make release to vscode tasks
Some checks are pending
Tests / Run Tests (1.23.x) (push) Waiting to run
Tests / Run Tests (1.24.x) (push) Waiting to run
Tests / Lint Code (push) Waiting to run
Tests / Build (push) Waiting to run

This commit is contained in:
Hein 2025-11-24 10:15:23 +02:00
parent aa99e8e4bc
commit 26c175e65e

7
.vscode/tasks.json vendored
View File

@ -18,7 +18,6 @@
"$go"
],
"group": "build",
},
{
"type": "go",
@ -81,6 +80,12 @@
"kind": "test",
"isDefault": false
}
},
{
"type": "shell",
"label": "Make Release",
"problemMatcher": [],
"command": "sh ${workspaceFolder}/make_release.sh",
}
]
}