devaryakjha pushed to "43-show-downloads-inside-user-library" triggering dev build 🚀 #66
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Varnasi Mobile App Build | |
run-name: ${{ github.actor }} pushed to "${{ github.ref_name }}" triggering dev build 🚀 | |
on: | |
push: | |
branches-ignore: | |
- main | |
env: | |
PROPERTIES_PATH: "./android/key.properties" | |
jobs: | |
Androi-App-Build: | |
name: Android App Dev Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: "zulu" | |
java-version: "11" | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- run: | | |
echo keyPassword=\${{ secrets.KEY_PASSWORD }} >> ${{env.PROPERTIES_PATH}} | |
echo storePassword=\${{ secrets.STORE_PASSWORD }} >> ${{env.PROPERTIES_PATH}} | |
echo keyAlias=\${{ secrets.KEY_ALIAS }} >> ${{env.PROPERTIES_PATH}} | |
echo storeFile=\${{ secrets.STORE_FILE }} >> ${{env.PROPERTIES_PATH}} | |
- run: echo "${{ secrets.KEYSTORE }}" | base64 --decode > android/app/key.jks | |
- run: flutter pub get | |
- name: Flutter Dev Build | |
run: flutter build apk --flavor development -t lib/main_development.dart | |
# Make appbundle downloadable | |
- name: Upload Dev artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: dev-release | |
path: build/app/outputs/flutter-apk/app-development-release.apk |