Skip to content

Instantly share code, notes, and snippets.

View subekti404dev's full-sized avatar
🤟

Urip Subekti subekti404dev

🤟
  • eFishery
  • Bandung
View GitHub Profile
#!/usr/bin/env bash
# Update Package
sudo apt update
# Install git wget curl snap
sudo apt install git wget curl snap
# Install IDE
sudo snap install code --classic
@subekti404dev
subekti404dev / gist:5875dd41ef733a1f54d0c87d0b341519
Created May 3, 2021 01:50
Github Action Build React Native Android
name: Build Android
on:
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2