Skip to content

feat: Add github actions #25

feat: Add github actions

feat: Add github actions #25

Workflow file for this run

name: Dev CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Note: This workflow uses the latest stable version of the Dart SDK.
# You can specify other versions if desired, see documentation here:
# https://github.com/dart-lang/setup-dart/blob/main/README.md
# - uses: dart-lang/setup-dart@v1
- uses: dart-lang/setup-dart@9a04e6d73cca37bd455e0608d7e5092f881fd603
- name: Setup project
run: |
echo "Accept permision..."
make denied
echo "Install bootstrap..."
make pre-bootstrap
echo "Pub get..."
make gh-pub-get
- name: Setup env
env:
ENV: ${{ secrets.ROOT_KEYSTORE_DEV }}
ROOT_KEYSTORE_DEV: ${{ secrets.ROOT_KEYSTORE_DEV }}
run: |
echo -n ${ROOT_KEYSTORE_DEV} | base64 -d > ./app/android/root-keystore-dev.jks
cd configs && echo -n ${ENV} | base64 -d > .env.zip && jar xf .env.zip && ls -a
- name: Build Release apk
run: make gh-build-android-apk flavor=dev
- name: Build Release bundle
run: make gh-build-android-aab flavor=dev
- name: Get release file aab path
id: releaseAab
run: echo "aabfile=$(find app/build/app/outputs/flutter-apk/app-dev-release.aab)" >> $GITHUB_OUTPUT
- name: Get release file apk path
id: releaseApk
run: echo "apkfile=$(find app/build/app/outputs/flutter-apk/app-dev-release.apk)" >> $GITHUB_OUTPUT
- name: Zip Files
uses: papeloto/action-zip@v1
with:
files: ${{ steps.releaseAab.outputs.aabfile }} ${{ steps.releaseApk.outputs.apkfile }}
dest: app-dev-release.zip
- name: Sending release build to Telegram
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
document: app-dev-release.zip
message: 🚀 New Release Published on DEV! >>> ${{github.head_ref}}.