We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
using project_path: . when gradlew is on the repo root will fail the build with
project_path: .
Couldn't find gradlew at path '/home/runner/work/repo_name/repo_name/gradlew'
# minimum reproducible case using job from README jobs: maybe-build-android: runs-on: ubuntu-latest steps: - uses: sparkfabrik/android-build-action@v1.5.0 with: project-path: . output-path: my-app.apk browserstack-upload: false ruby-version: "2.7.5" bundler-version: "2.3.26" fastlane-env: "debug"
The text was updated successfully, but these errors were encountered:
Also tried project_path: ./ same error.
project_path: ./
With project_path: ../ error actually shows the correct place for gradlew
project_path: ../
[!] Couldn't find gradlew at path '/home/runner/work/repo_name/gradlew'
Sorry, something went wrong.
seeing https://github.com/fastlane/fastlane/blob/HEAD/fastlane/lib/fastlane/setup/setup.rb#L61
i tried to fake a directory there with
project-path: ../../repo_name but it ends up the same as ../
project-path: ../../repo_name
../
No branches or pull requests
using
project_path: .
when gradlew is on the repo root will fail the build withThe text was updated successfully, but these errors were encountered: