ci: revert debug to using workflow_dispatch and the debug_enabled flag

This commit is contained in:
Derrick Hammer 2023-08-09 14:12:28 -04:00
parent 49082c4014
commit d59b39c8ed
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 5 additions and 2 deletions

View File

@ -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;