mirror of https://github.com/AxioDL/metaforce.git
ci: Temporarily disable release workflow
This commit is contained in:
parent
2644c01123
commit
a6fc564ff6
|
@ -2,8 +2,8 @@ name: Build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches-ignore:
|
# branches-ignore:
|
||||||
- main
|
# - main
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- '*.json'
|
- '*.json'
|
||||||
- '*.md'
|
- '*.md'
|
||||||
|
|
|
@ -1,13 +1,14 @@
|
||||||
name: Release
|
name: Release
|
||||||
|
|
||||||
on:
|
on: workflow_dispatch
|
||||||
push:
|
#on:
|
||||||
branches:
|
# push:
|
||||||
- main
|
# branches:
|
||||||
paths-ignore:
|
# - main
|
||||||
- '*.json'
|
# paths-ignore:
|
||||||
- '*.md'
|
# - '*.json'
|
||||||
- '*LICENSE'
|
# - '*.md'
|
||||||
|
# - '*LICENSE'
|
||||||
|
|
||||||
env:
|
env:
|
||||||
BUILDCACHE_VERSION: v0.27.3
|
BUILDCACHE_VERSION: v0.27.3
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
{
|
|
||||||
"version": "0.2.0",
|
|
||||||
"configurations": [
|
|
||||||
{
|
|
||||||
"name": "Launch",
|
|
||||||
"type": "cppdbg",
|
|
||||||
"request": "launch",
|
|
||||||
// Resolved by CMake Tools:
|
|
||||||
"program": "${command:cmake.launchTargetPath}",
|
|
||||||
"args": [],
|
|
||||||
"stopAtEntry": false,
|
|
||||||
"cwd": "${workspaceFolder}",
|
|
||||||
"environment": [
|
|
||||||
{
|
|
||||||
// add the directory where our target was built to the PATHs
|
|
||||||
// it gets resolved by CMake Tools:
|
|
||||||
"name": "PATH",
|
|
||||||
"value": "$PATH:${command:cmake.launchTargetDirectory}"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "OTHER_VALUE",
|
|
||||||
"value": "Something something"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"externalConsole": true,
|
|
||||||
"MIMode": "gdb",
|
|
||||||
"setupCommands": [
|
|
||||||
{
|
|
||||||
"description": "Enable pretty-printing for gdb",
|
|
||||||
"text": "-enable-pretty-printing",
|
|
||||||
"ignoreFailures": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
Loading…
Reference in New Issue