You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have observed this issue where on the self-hosted runner, my expo action fails even though I have provided the expo token etc.
To Reproduce
What steps did you perform which led to this issue?
Create a self hosted linux runner
Point your action to this runner
Expected behavior
Expo github action should successfully complete.
Actual behavior
Installing eas-cli (5.4.0) from cache or with yarn
::group::Validating authenticated account
Validating authenticated account
::endgroup::
Error: Parameter 'commandLine' cannot be null or empty.
##[debug]Error: Parameter 'commandLine' cannot be null or empty.
##[debug] at /home/jakovglavina/actions-runner/_work/_actions/expo/expo-github-action/v8/build/setup/index.js:5805:19
##[debug] at Generator.next (<anonymous>)
##[debug] at /home/jakovglavina/actions-runner/_work/_actions/expo/expo-github-action/v8/build/setup/index.js:5784:71
##[debug] at new Promise (<anonymous>)
##[debug] at __webpack_modules__.1514.__awaiter (/home/jakovglavina/actions-runner/_work/_actions/expo/expo-github-action/v8/build/setup/index.js:5780:12)
##[debug] at exec (/home/jakovglavina/actions-runner/_work/_actions/expo/expo-github-action/v8/build/setup/index.js:5802:12)
##[debug] at authenticate (/home/jakovglavina/actions-runner/_work/_actions/expo/expo-github-action/v8/build/setup/index.js:72452:[28]
##[debug]Node Action run completed with exit code 1
##[debug]MSYS='winsymlinks:nativestrict'
##[debug]Finishing: 🏗 Setup EAS
Additional context
On Github-hosted runners this step passes sucessfully, but again fails on the following step:
The text was updated successfully, but these errors were encountered:
I'm running on a self hosted runner too, and I'm seeing a similar issue.
I've narrowed this down to the following line (the actual "problem" is a little bit further down the callstack), but the tl;dr is that which returns an empty string here. So the command being passed to exec is empty, which results in the error string we're seeing. https://github.com/expo/expo-github-action/blob/main/src/expo.ts#L97
I've validated that the eas-cli package was installed to the correct _work/_tool subdirectory, but for whatever reason the process running the eas setup code isn't looking there. This is only happening on a new runner that I'm setting up with Ansible for the first time. I have another hand-configured runner that works just fine, so I'm working to bisect the difference between the machines. I'll report back if I figure out the specific issue so other folks who run into this can work around the problem.
Description of the bug
I have observed this issue where on the self-hosted runner, my expo action fails even though I have provided the expo token etc.
To Reproduce
What steps did you perform which led to this issue?
Expected behavior
Expo github action should successfully complete.
Actual behavior
Additional context
On Github-hosted runners this step passes sucessfully, but again fails on the following step:
The text was updated successfully, but these errors were encountered: