58 lines
1.6 KiB
YAML
58 lines
1.6 KiB
YAML
on:
|
|
push:
|
|
tags:
|
|
- 'v*'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up ruby env
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.2.1
|
|
bundler-cache: true
|
|
|
|
- name: Setup java for android build
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
java-version: '17'
|
|
distribution: 'zulu'
|
|
|
|
- name: Setup android SDK
|
|
uses: android-actions/setup-android@v3
|
|
|
|
- name: Install Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: stable
|
|
flutter-version: 3.22.0
|
|
cache: true
|
|
|
|
- name: Infer version number from git tag
|
|
id: version
|
|
env:
|
|
REF_NAME: ${{ github.ref_name }}
|
|
run:
|
|
# remove the 'v' prefix from the tag name
|
|
echo "VERSION_NAME=${REF_NAME//v}" >> $GITHUB_ENV
|
|
|
|
- name: Load secrets from github
|
|
run: |
|
|
echo "${{ secrets.ANDROID_SECRET_PROPERTIES }}" > secrets.properties
|
|
echo "${{ secrets.ANDROID_GOOGLE_PLAY_JSON }}" > fastlane/google-key.json
|
|
# decode the base64 encoded google key
|
|
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > release.keystore
|
|
working-directory: android
|
|
|
|
- name: Install fastlane
|
|
run: bundle install
|
|
working-directory: android
|
|
|
|
- name: Run fastlane lane
|
|
run: bundle exec fastlane deploy_testing
|
|
working-directory: android
|
|
# the environment variable VERSION_NAME is implicitly available
|