Building a prerelease version apk file #34
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: build-prerelease-android | |
run-name: Building a prerelease version apk file | |
permissions: | |
contents: write | |
packages: write | |
deployments: write | |
issues: write | |
pull-requests: write | |
repository-projects: write | |
security-events: write | |
statuses: write | |
on: workflow_dispatch | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v2 | |
with: | |
distribution: 'zulu' | |
java-version: '11' | |
- uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
cache: true | |
cache-key: 'flutter-:os:-:channel:-:version:' # optional, change this to force refresh cache | |
architecture: x64 | |
- name: 🐦 Setup Shorebird | |
uses: shorebirdtech/setup-shorebird@v0 | |
- name: Create the Keystore | |
env: | |
KEYSTORE_B64: ${{ secrets.KEYSTORE_B64 }} | |
run: | | |
# import keystore from secrets | |
echo $KEYSTORE_B64 | base64 -d > $RUNNER_TEMP/keystore.jks | |
- name: Create key.properties | |
env: | |
KEYSTORE_PASSWORD: ${{ secrets.KEYSTORE_PASS }} | |
KEY_ALIAS: ${{ secrets.KEYSTORE_ALIAS }} | |
KEY_PASSWORD: ${{ secrets.KEY_PASS }} | |
run: | | |
echo -e "storePassword=$KEYSTORE_PASSWORD\nkeyPassword=$KEY_PASSWORD\nkeyAlias=$KEY_ALIAS\nstoreFile=$RUNNER_TEMP/keystore.jks" > android/key.properties | |
- name: Decode Android Service Account | |
run: echo "${{ secrets.SERVICE_ACCOUNT }}" | base64 --decode > store_credentials.json | |
- name: 'Get Previous tag' | |
id: previoustag | |
uses: "WyriHaximus/github-action-get-previous-tag@v1" | |
with: | |
fallback: 1.0.0 | |
- name: 'Get next minor version' | |
id: semvers | |
uses: "WyriHaximus/github-action-next-semvers@v1" | |
with: | |
version: ${{ steps.previoustag.outputs.tag }} | |
- name: Update pubspec.yaml | |
uses: fjogeleit/yaml-update-action@main | |
with: | |
valueFile: 'pubspec.yaml' | |
propertyPath: 'version' | |
value: "${{ steps.semvers.outputs.patch }}" | |
- run: flutter pub get | |
- run: flutter gen-l10n | |
- name: 🚀 Shorebird Release | |
run: shorebird release android --force --artifact apk '--' --dart-define=BVS="Prerelease ${{ steps.semvers.outputs.v_patch }} ShoreBird" | |
env: | |
SHOREBIRD_TOKEN: ${{ secrets.SHOREBIRD_TOKEN }} | |
- name: Upload to Google Play | |
uses: r0adkll/upload-google-play@v1 | |
with: | |
serviceAccountJson: store_credentials.json | |
packageName: com.vypal.edupage2 | |
releaseFiles: build/app/outputs/bundle/release/app-release.aab | |
track: beta | |
status: inProgress | |
- run: cp "build/app/outputs/apk/release/app-release.apk" "EduPage2-${{ steps.semvers.outputs.v_patch }}.apk" | |
- uses: "marvinpinto/action-automatic-releases@latest" | |
with: | |
repo_token: "${{ secrets.GITHUB_TOKEN }}" | |
automatic_release_tag: "${{ steps.semvers.outputs.v_patch }}" | |
prerelease: false | |
title: "EduPage2 Beta ${{ steps.semvers.outputs.v_patch }}" | |
files: | | |
EduPage2-${{ steps.semvers.outputs.v_patch }}.apk | |
- name: Commit changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add pubspec.yaml | |
git commit -m 'Bump version to ${{ steps.semvers.outputs.patch }} [no ci]' |