Skip to content

Setup release pipeline #9

Setup release pipeline

Setup release pipeline #9

Workflow file for this run

name: "Build Android"
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Retrieve the secrets and decode it to a file
run: |
ls android
echo $UPLOAD_KEYSTORE_BASE64 | base64 --decode > ./android/keystores/upload.keystore
echo $PLAY_STORE_CREDENTIALS_BASE64 | base64 --decode > ./android/fastlane/play-store-credentials.json
shell: bash
- name: Upload apk to artifact
uses: actions/upload-artifact@v4
with:
name: android
path: ./android/