• Stars
    star
    130
  • Rank 277,575 (Top 6 %)
  • Language
    Dockerfile
  • License
    MIT License
  • Created over 4 years ago
  • Updated almost 2 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Github Action for React Native Build 🦊

Github Action for React Native Build

This github action automatically builds the android apk under the artifact section whenever a commit is pushed into the master branch

Visitors

Installation

Add the action.yml as follows .github/workflows/build.yml in the project. For more reference see the official docs

name: react-native-android-build-apk
on:
  push:
    branches:
      - master
jobs:
  install-and-test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Install npm dependencies
        run: |
          npm install
  build-android:
    needs: install-and-test
    runs-on: ubuntu-latest
    steps: 
      - uses: actions/checkout@v3
      - 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/

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

Troubleshoot

Gradlew commands not working

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

chmod +x ./gradlew

More Repositories

1

big-companies-interview-questions

A curated list of previous asked Interview Question at Big Companies and Startups 🀲 πŸ†
895
star
2

awesome-gsoc-roadmap

A comprehensive curated list of available GSOC 2020 Guides, Write-ups and Tutorials 🀠 πŸ†
135
star
3

scaling-nodejs

πŸ“ˆ Scaling Node.js on each X, Y and Z axis using Node.js Native Modules, PM2, AWS , Load Balancers, AutoScaling, Nginx, AWS Cloudfront
JavaScript
95
star
4

serverless-lambda-node-express-mongodb

Boilerplate for Creating Restful API using Express.js, Node.js, Mongodb and Setting up on AWS Lambda πŸš€
JavaScript
19
star
5

list-of-algorithms

A comprehensive curated list of algorithms🀠 πŸ†
14
star
6

dictionary-api

πŸš€ Restful API developed using Serverless Framework , AWS Lambda Functions, Cloudfront, Serverless Dashboard for monitoring and Dictionary Data
JavaScript
13
star
7

razorpay-react-native

An Example of Integration of Razorpay SDK in React Native App πŸ“™
JavaScript
7
star
8

gsoc-dataset

Repository containing the list of organizations [JSON Data] that took part in GSOC Over the span of 10 years. 🌩
5
star
9

imgur-upload-image

Imgur Upload Image Function ⚑
JavaScript
5
star
10

react-native-image-swipe

React Native Image Swipe Component πŸš€
JavaScript
4
star
11

email-automation

Email Automation using Node.js πŸš€
JavaScript
4
star
12

fast2sms-node-express-rest-api

Fast2sms Node.js Express.js Rest API ⚑
JavaScript
4
star
13

Social-Media-Content-API

Facebook, Instagram, and Twitter Content POST API 🌐
JavaScript
3
star
14

ticket-booking-system

It is built on LAMP Stack and uses the core technologies
JavaScript
3
star
15

AWS-SNS-OTP-API

AWS SNS OTP Restful API using Node.js - Express.js
JavaScript
3
star
16

Java-Codes

Binary Search by Recursion, Bubble Sort by Recursion, factorial, hcf by recursion, merging two arrays without sorting, palindrome using string buffer library,quicksort, StreamTokenizer, Scanner class and many more program in OBJECT ORIENTED PROGRAMMING LANGUAGE JAVA
2
star
17

instagram-user-meta-data

Instagram User Meta Data πŸ“· can be fetched using this script in an easy to use JSON Object for displaying Instagram Cards.
JavaScript
2
star
18

app-details-api

Rest API for getting App details from Google Play Store
JavaScript
1
star
19

convert-youtube-mp3

A python script to convert youtube video to mp3 format
Python
1
star
20

playstore-app-info

The data is scraped from play.google.com and refined in a well-formatted way.
JavaScript
1
star
21

realabbas

Short Description
1
star
22

blockchain-working-dynamics

This web application demonstrates a simplified Blockchain implementation where users can generate a symmetric key, sign data, and add blocks to the chain, with basic linking direction graphs for visualization.
JavaScript
1
star