android-version-actions
android-version-actions copied to clipboard
Action does not respect the job's `working-directory`
Thanks for this great action!
My problem is that the job that includes this action has the following properties set for the job (it's a monorepo with servers, web apps and several Android apps):
defaults:
run:
working-directory: ./Apps/Android/Root
When I try to use the action:
- name: + Bump Android App #1 version
uses: chkfung/[email protected]
with:
gradlePath: app-one/build.gradle
versionCode: ${{ env.ANDROID_BUILD_CODE }}
the action fails, but if I change it to:
- name: + Bump Android App #1 version
uses: chkfung/[email protected]
with:
gradlePath: Apps/Android/Root/app-one/build.gradle
versionCode: ${{ env.ANDROID_BUILD_CODE }}
then the action works correctly.
PROBLEM: The action should respect the job's working-directory
.