mirror of
https://github.com/mwalbeck/nextcloud-breeze-dark.git
synced 2025-05-16 06:11:23 +00:00
27 lines
704 B
JSON
27 lines
704 B
JSON
{
|
|
// See https://go.microsoft.com/fwlink/?LinkId=733558
|
|
// for the documentation about the tasks.json format
|
|
"version": "2.0.0",
|
|
"tasks": [
|
|
{
|
|
"label": "create release",
|
|
"type": "shell",
|
|
"command": "make appstore & make sign_release",
|
|
"problemMatcher": [],
|
|
"group": {
|
|
"kind": "build",
|
|
"isDefault": true
|
|
}
|
|
},
|
|
{
|
|
"label": "appstore",
|
|
"type": "shell",
|
|
"command": "make appstore",
|
|
},
|
|
{
|
|
"label": "sign release",
|
|
"type": "shell",
|
|
"command": "make sign_release",
|
|
}
|
|
]
|
|
}
|