From a6fc564ff680b067b2ab1661c6c6d6a957af232f Mon Sep 17 00:00:00 2001 From: Luke Street Date: Wed, 23 Nov 2022 10:07:54 -0500 Subject: [PATCH] ci: Temporarily disable release workflow --- .github/workflows/build.yml | 4 ++-- .github/workflows/release.yml | 17 +++++++++-------- .vscode/launch.json | 36 ----------------------------------- 3 files changed, 11 insertions(+), 46 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 690b2c0c5..ee78fdbd5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,8 +2,8 @@ name: Build on: push: - branches-ignore: - - main +# branches-ignore: +# - main paths-ignore: - '*.json' - '*.md' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 963b827af..b7e3b47c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,13 +1,14 @@ name: Release -on: - push: - branches: - - main - paths-ignore: - - '*.json' - - '*.md' - - '*LICENSE' +on: workflow_dispatch +#on: +# push: +# branches: +# - main +# paths-ignore: +# - '*.json' +# - '*.md' +# - '*LICENSE' env: BUILDCACHE_VERSION: v0.27.3 diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index fa722d897..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -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 - } - ] - } - ] -}