Skip to content

Instantly share code, notes, and snippets.

View niraj-prajapati's full-sized avatar
🚀

Niraj Prajapati niraj-prajapati

🚀
View GitHub Profile
@niraj-prajapati
niraj-prajapati / deploy.yml
Last active August 30, 2023 09:12
Build, generate bundle and release to beta when pushed on master
name: Deploy App CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
@niraj-prajapati
niraj-prajapati / push.yml
Last active August 30, 2023 09:11
Build when any branch pushed except master
name: On Push CI
on:
push:
branches:
- '*'
- '!master'
jobs:
build:
@niraj-prajapati
niraj-prajapati / .gitignore
Created June 12, 2020 07:25
basic .gitignore to include in all android apps
# Built application files
*.apk
*.ap_
*.aab
# Files for the ART/Dalvik VM
*.dex
# Java class files
*.class