diff --git a/.github/workflows/client-ubuntu.yml b/.github/workflows/client-ubuntu.yml index 8dc31e5..6a1f265 100644 --- a/.github/workflows/client-ubuntu.yml +++ b/.github/workflows/client-ubuntu.yml @@ -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