React Native 🚀 Github Actions
Ali Abbas

Ali Abbas @realabbas

About: Tech enthusiast with the passion to develop applications that can make this world better. "Whenever I get bored, I call API's"

Location:
India
Joined:
Apr 14, 2019

React Native 🚀 Github Actions

Publish Date: Apr 10 '20
26 0

I recently came across Github Actions. It's a powerful tool. So, i thought of giving it a try. So, I used it to automate the build of react native android apk.
I created a GitHub repository for this project.

Check it out here

CGPA Calculator

🚀 Github Action for React Native Build

Add the build.yml as follows

.github/workflows/build.yml

in the project.

name: build
on:
  push:
    branches:
      - master
jobs:
  install-and-test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Install npm dependencies
        run: |
          npm install
  build-android:
    needs: install-and-test
    runs-on: ubuntu-latest
    steps: 
      - uses: actions/checkout@v2
      - name: Install npm dependencies
        run: |
          npm install
      - name: Build Android Release
        run: |
          cd android && ./gradlew assembleRelease
      - name: Upload Artifact
        uses: actions/upload-artifact@v1
        with:
          name: app-release.apk
          path: android/app/build/outputs/apk/release/

Enter fullscreen mode Exit fullscreen mode

Build will be triggered as soon as the commit is pushed to the master branch.

After that, builded apk can be found under the artifact section

Rapidtools
Percentage Calculator

Troubleshoot

Gradlew commands not working

You can try to execute the following command before run gradle commands.

chmod +x ./gradlew
Enter fullscreen mode Exit fullscreen mode

Gradlew Command Not working in Github Actions React Native

Comments 0 total

    Add comment