đŸ€–Automate Publishing Android Library to Bintray using GitHub Actions 🚀

đŸ€–Automate Publishing Android Library to Bintray using GitHub Actions 🚀

In this article, I’m going to demonstrate the use of GitHub Actions to publish open-source Android Library to Bintray when it is released.

You might have developed a cool open-source android libraryđŸ› ïž. You have published it to Bintray/JCenter. Right? But you’re publishing it manually using Gradle CLI gradlew bintrayUpload command. After you made changes in your library, you always run Gradle command manually. Want to see how you can automate publishing it using GitHub Actions CI? Then you are at the right place. We will see how to publish your open-source cool android library to Bintray automatically when we create a new release in GitHub repository. So, let’s start 😃.

Before starting, you’ll need to do some tasks with Bintray profile. If you’ve already done, you can skip this part and directly go to the next part⚡.

đŸ’» Setup BintrayđŸ› ïž:

  • Visit https://bintray.com and set up your account there.

  • Goto Home → Repository and create maven repository and keep its name of your choice. I’ve named it ‘maven’. (Remember, it’ll be useful in upcoming steps.)

  • After this, it’ll look like below. Click Edit

  • Select API Key from the left menu and Copy or Keep this API Key for future reference.

Thus, you’re done with Bintray set up. Now let’s see the Android part.

đŸ’»Android Library Set up

In build.gradle of your project module. Ensure that you’ve below plugins added.

Add these plugins in the build.gradle file of the library module.

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: com.jfrog.bintray'**

Now, we’ve to set up library configuration🛠 for the Bintray in this file. Just append build.gradle file of library module with the code as below.

About these variables —

  • bintrayRepo — Name of the repository you’ve created in previous steps.

  • bintrayName — Name which will be visible on Bintray.

  • Change the values of other fields of your choice.

    Notice that we’re reading Bintray User and Bintray API Key from the system environment variable using System.getenv() method. You’ll understand it’s significance in upcoming steps(GitHub Actions Workflow Setup).

Now, you’ve done this part and now push your code to the GitHub repo for next step.

đŸ’»Setting up on GitHub

  • Go to Settings → Click Add new Secret

You’ve to add two secret values for this repo. i.e. ‘BINTRAY_USER’ and ‘BINTRAY_API_KEY’.

  • BINTRAY_USER — Your Bintray Username

  • BINTRAY_API_KEY — Your Bintray API Key (Which you’ve copied in the previous step).

After adding these secrets, it should look as below👇.

GitHub Repository SecretsGitHub Repository Secrets

đŸ’»Setting up GitHub Actions Workflow

Now just create a workflow file named publish.yml which will be responsible to publish your library automatically on every release.

  • Just create a .githubdirectory at the root of GitHub repository. Under it, create workflows directory and put below file in this. So path would be .github/workflows/publish.yml .

  • Or simply, you can directly create the workflow by clicking the Actions tab and then create Workflow from available templates.

Notice that we’ve exposed system environment variable bintrayUser and bintrayApiKey which values we’re getting from GitHub secrets. Remember that we’re reading these values in build.gradle using System.getenv() method.

Finally, it’s running a command ./gradlew bintrayUpload which will publish your library to the Bintray!

Thus, you’ve done setup.

Test it!

Now let’s test if it is working or not.

Go to Releases of your repository and click Create new Release and create release as below and click Publish Release.👇

After you click Publish release, that workflow we created earlier will be triggered and it will start its execution.

Now just navigate to Actions tab of your GitHub repo and notice that your Action is running. Finally, after execution is done, you’ll see the result as below! 👇

Yeah😍!!! Your cool open-source Android library is just successfully published in Bintray JFrog repository. Let’s verify it.😃

Go to your Bintray account and open Maven repository you created earlier and see your library is listed there. Now, officially your library is published and it can be imported in Android projects. 👇

Bintray Repositories

Your package details on Bintray

This is how we automated publishing your cool open-source android library to Bintray using GitHub Actions.

In the future, you will not need to manage it manually😎. You just make changes in the library and create Release on GitHub and a new version of the library will be automatically published to the Bintray and it’ll be live in a few seconds🚀.

Yeah 😍! Hope you liked that. If you find it helpful please share this article. Maybe it’ll help someone needy!

Thank you 😄!

Sharing is Caring!

Resource —

Here is a repository that contains the code used in this article.

If you want to contact me, feel free to reach me


Did you find this article valuable?

Support Shreyas Patil by becoming a sponsor. Any amount is appreciated!

Â