diff --git a/.github/actions/build-docs/upload.ros b/.github/actions/build-docs/upload.ros index 34b6827..4c5ce0c 100755 --- a/.github/actions/build-docs/upload.ros +++ b/.github/actions/build-docs/upload.ros @@ -229,7 +229,12 @@ behaviour could be overriden by keyword argument ``:raise t``." :if-exists :overwrite) (declare (ignorable s))) - (when (uiop:getenv "NGROK_AUTH_TOKEN") + (unless (string= (or (uiop:getenv "NGROK_AUTH_TOKEN") + ;; If var is not given, uiop will return NIL, + ;; but inside github action, not required arguments + ;; are empty strings and env var will be empty string. + "") + "") (let ((url (ngrok/slynk:start 4005))) (when url (log:info "Waiting for connection to ~A" url)