From d59b39c8ed9bdd733eba95ab4941499c43c6eb59 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Wed, 9 Aug 2023 14:12:28 -0400 Subject: [PATCH] ci: revert debug to using workflow_dispatch and the debug_enabled flag --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfe4eca..a26fb3e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: - master - develop - develop-* + workflow_dispatch: + inputs: + debug_enabled: + type: boolean jobs: build: runs-on: ubuntu-latest @@ -18,9 +22,8 @@ jobs: cache: 'npm' - name: Setup Golang run: | - set -x; sudo apt-get update; - bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer) || true; + bash < <(curl -s -S -L https://raw.githubusercontent.com/moovweb/gvm/master/binscripts/gvm-installer); source ~/.gvm/scripts/gvm; gvm install go1.4 -B; gvm use go1.4 --default;