I've created a pipeline using codecommit->codebuild->codepipeline in order to build and test automatically my android app located on my github repository.
But at first stage after build step the pipeline returns this error:
I don't know the app location if it refers to .apk file because there is no .apk file into my repository.
Can anyone help me?
date
artifacts: files: - '*/' – rubik90artifacts
clause? it might be possible that apk file is not being left in a visible path by the build process: trust me, i've been there. A quick check would be adding als -ltr
execution in thepost_build
clause so that you can see if the apk is actually in there. Hope that helps! – marianogg9