I'm trying to update the path variable in Linux VM in GitHub CI.
What I'm trying are:
export PATH="${PATH}:$ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools/bin"export PATH=$ANDROID_SDK_ROOT/cmdline-tools/cmdline-tools/bin:$PATH
But nothing seems to working, as when I'm trying to echo, it doesn't return me what I was expecting. What it lists is:
/home/runner/.local/bin
/opt/pipx_bin
/home/runner/.cargo/bin
/home/runner/.config/composer/vendor/bin
/usr/local/.ghcup/bin
/home/runner/.dotnet/tools
/snap/bin
/usr/local/sbin
/usr/local/bin
/usr/sbin
/usr/bin
/sbin
/bin
/usr/games
/usr/local/games
/snap/bin
It should have contained (or at least something like this):
/usr/lib/android-sdk/cmdline-tools/cmdline-tools/bin
Full job details: https://github.com/maifeeulasad/unmukto/actions/runs/3590283087/jobs/6043518013