Update client-ubuntu.yml

When enabling debug mode, start build.sh with debug also
This commit is contained in:
Wolfgang
2023-05-29 13:30:55 +02:00
committed by GitHub
parent b37912b4b4
commit d42895c968

View File

@@ -18,4 +18,8 @@ jobs:
- name: Running compile script
run: |
source ${HOME}/.cargo/env
./build.sh client
if [ "${RUNNER_DEBUG}" = "1" ]; then
./build.sh client debug
else
./build.sh client
fi