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

9
.vscode/tasks.json vendored
View File

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