1

I am quite new to Jenkins, and I am setting up a mobile build using the Jenkins-pipeline, which is working fine. Now this mobile-build generates an APK file, and I want to give an URL in the console to this generated APK file, so then whoever is triggering the build can download the APK file on a successful build.

I was checking this plugin, but it doesn't fit in my use-case.

Is there any plugin available to do this file operation.

1 Answers1

1

My suggestion is to use the archive artifact post build step, which saves the .apk file on the build console, making it available for download directly from the console. Check this post speaking about artifacts post step, and this in case you are using pipelines .

nandilov
  • 565
  • 6
  • 15