2023-02-15 21:36:47 +00:00
|
|
|
# This workflow uses actions that are not certified by GitHub.
|
|
|
|
# They are provided by a third-party and are governed by
|
|
|
|
# separate terms of service, privacy policy, and support
|
|
|
|
# documentation.
|
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
|
|
|
|
# This workflow uses perl regex. For better syntaxis understading see these docs:
|
|
|
|
# https://perldoc.perl.org/perlrequick#Search-and-replace
|
|
|
|
# https://perldoc.perl.org/perlre#Other-Modifiers
|
|
|
|
|
2023-08-05 19:11:23 +00:00
|
|
|
name: Create new release
|
|
|
|
|
|
|
|
run-name: Release v${{ inputs.version }}
|
2023-02-15 21:36:47 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
2023-06-27 10:17:35 +00:00
|
|
|
inputs:
|
|
|
|
version:
|
|
|
|
description: "Version"
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-08-09 10:24:12 +00:00
|
|
|
release-notes:
|
|
|
|
description: "Release notes"
|
|
|
|
required: true
|
|
|
|
type: string
|
2023-08-10 10:42:31 +00:00
|
|
|
github-release:
|
|
|
|
type: boolean
|
|
|
|
description: Create Github release
|
|
|
|
default: true
|
|
|
|
google-play-release:
|
|
|
|
type: boolean
|
|
|
|
description: Create Google Play release
|
|
|
|
default: true
|
2023-09-02 08:32:08 +00:00
|
|
|
include-iap:
|
|
|
|
type: boolean
|
|
|
|
description: Include IAP package
|
|
|
|
default: true
|
2023-02-15 21:36:47 +00:00
|
|
|
|
2023-06-20 12:48:28 +00:00
|
|
|
env:
|
2023-08-06 14:28:20 +00:00
|
|
|
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=240/320 -t lib/main_prod.dart
|
2023-06-20 12:48:28 +00:00
|
|
|
|
2023-02-15 21:36:47 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
2023-06-27 10:17:35 +00:00
|
|
|
name: Build .apk & .aab
|
2023-09-02 08:32:08 +00:00
|
|
|
if: ${{ inputs.github-release || inputs.google-play-release }}
|
2023-02-15 21:36:47 +00:00
|
|
|
runs-on: macos-11
|
2023-08-09 15:06:47 +00:00
|
|
|
timeout-minutes: 30
|
2023-08-05 19:11:23 +00:00
|
|
|
steps:
|
2023-09-02 10:18:01 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2023-09-02 08:32:08 +00:00
|
|
|
- name: Connect private iap package
|
|
|
|
uses: webfactory/ssh-agent@v0.8.0
|
|
|
|
if: ${{ inputs.include-iap }}
|
|
|
|
with:
|
|
|
|
ssh-private-key: ${{ secrets.M3_LIGHTMETER_IAP_KEY }}
|
|
|
|
|
|
|
|
- name: Override iap package with stub
|
|
|
|
if: ${{ !inputs.include-iap }}
|
2023-09-02 10:18:01 +00:00
|
|
|
run: bash ./.github/scripts/stub_iap.sh
|
2023-04-05 19:34:06 +00:00
|
|
|
|
2023-08-09 14:39:41 +00:00
|
|
|
- uses: actions/setup-java@v3
|
2023-02-15 21:36:47 +00:00
|
|
|
with:
|
|
|
|
distribution: "zulu"
|
|
|
|
java-version: "11"
|
|
|
|
|
|
|
|
- name: Restore Android keystore .jsk and .properties files
|
|
|
|
env:
|
|
|
|
KEYSTORE: ${{ secrets.KEYSTORE }}
|
|
|
|
KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }}
|
|
|
|
run: |
|
|
|
|
KEYSTORE_PATH=$RUNNER_TEMP/keystore.jks
|
|
|
|
echo -n "$KEYSTORE" | base64 --decode --output $KEYSTORE_PATH
|
|
|
|
cp $KEYSTORE_PATH ./android/app
|
|
|
|
KEYSTORE_PROPERTIES_PATH=$RUNNER_TEMP/key.properties
|
|
|
|
echo -n "$KEYSTORE_PROPERTIES" | base64 --decode --output $KEYSTORE_PROPERTIES_PATH
|
|
|
|
cp $KEYSTORE_PROPERTIES_PATH ./android
|
|
|
|
|
2023-04-09 10:52:57 +00:00
|
|
|
- name: Restore android/app/google-services.json
|
|
|
|
env:
|
|
|
|
GOOGLE_SERVICES_JSON_ANDROID: ${{ secrets.GOOGLE_SERVICES_JSON_ANDROID }}
|
|
|
|
run: |
|
|
|
|
GOOGLE_SERVICES_JSON_ANDROID_PATH=$RUNNER_TEMP/google-services.json
|
|
|
|
echo -n "$GOOGLE_SERVICES_JSON_ANDROID" | base64 --decode --output $GOOGLE_SERVICES_JSON_ANDROID_PATH
|
|
|
|
cp $GOOGLE_SERVICES_JSON_ANDROID_PATH ./android/app
|
2023-04-05 19:34:06 +00:00
|
|
|
|
2023-05-03 10:45:10 +00:00
|
|
|
- name: Restore firebase_options.dart
|
|
|
|
env:
|
|
|
|
FIREBASE_OPTIONS: ${{ secrets.FIREBASE_OPTIONS }}
|
|
|
|
run: |
|
|
|
|
FIREBASE_OPTIONS_PATH=$RUNNER_TEMP/firebase_options.dart
|
|
|
|
echo -n "$FIREBASE_OPTIONS" | base64 --decode --output $FIREBASE_OPTIONS_PATH
|
|
|
|
cp $FIREBASE_OPTIONS_PATH ./lib
|
2023-04-05 19:34:06 +00:00
|
|
|
|
2023-08-10 10:42:31 +00:00
|
|
|
# This step makes sense when Github release is enabled because this release increments the build number.
|
|
|
|
# Therefore here we have to increment it as well to build an apk with the same build number.
|
2023-06-27 10:17:35 +00:00
|
|
|
- name: Increment build number & replace version number
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.github-release }}
|
2023-09-02 10:18:01 +00:00
|
|
|
run: bash ./.github/scripts/increment_build_number.sh ${{ github.event.inputs.version }}
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-02-15 21:36:47 +00:00
|
|
|
- name: Install Flutter
|
|
|
|
uses: subosito/flutter-action@v2
|
|
|
|
with:
|
|
|
|
channel: "stable"
|
2023-07-25 15:31:01 +00:00
|
|
|
flutter-version: '3.10.0'
|
2023-02-15 21:36:47 +00:00
|
|
|
|
|
|
|
- name: Prepare flutter project
|
2023-04-05 19:34:06 +00:00
|
|
|
run: |
|
2023-02-15 21:36:47 +00:00
|
|
|
flutter --version
|
|
|
|
flutter pub get
|
|
|
|
flutter pub run intl_utils:generate
|
|
|
|
|
2023-05-04 13:44:00 +00:00
|
|
|
- name: Build apk
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.github-release }}
|
2023-06-20 12:48:28 +00:00
|
|
|
run: flutter build apk $BUILD_ARGS
|
2023-05-04 13:44:00 +00:00
|
|
|
|
|
|
|
- name: Upload apk to artifacts
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.github-release }}
|
2023-05-04 13:44:00 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m3_lightmeter_apk
|
|
|
|
path: build/app/outputs/flutter-apk/app-prod-release.apk
|
|
|
|
|
2023-02-15 21:36:47 +00:00
|
|
|
- name: Build appbundle
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.google-play-release }}
|
2023-06-20 12:48:28 +00:00
|
|
|
run: flutter build appbundle $BUILD_ARGS
|
2023-02-15 21:36:47 +00:00
|
|
|
|
2023-02-23 20:05:02 +00:00
|
|
|
- name: Upload app bundle to artifacts
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.google-play-release }}
|
2023-02-23 20:05:02 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2023-02-15 21:36:47 +00:00
|
|
|
with:
|
2023-02-23 20:05:02 +00:00
|
|
|
name: m3_lightmeter_bundle
|
2023-02-15 21:36:47 +00:00
|
|
|
path: build/app/outputs/bundle/prodRelease/app-prod-release.aab
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
generate-release-notes:
|
|
|
|
name: Generate release notes
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Generate release notes
|
|
|
|
run: |
|
|
|
|
echo ${{ inputs.release-notes }} > whatsnew-en-US.md
|
|
|
|
perl -i -pe 's/\s{1}(-{1})/\n$1/g' whatsnew-en-US.md
|
|
|
|
|
|
|
|
- name: Upload merged_native_libs.zip to artifacts
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: whatsnew-en-US
|
|
|
|
path: whatsnew-en-US.md
|
|
|
|
|
2023-06-27 10:17:35 +00:00
|
|
|
update-version-in-repo:
|
|
|
|
name: Update repo version
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.github-release }}
|
2023-06-27 10:17:35 +00:00
|
|
|
needs: [build]
|
2023-06-28 15:53:54 +00:00
|
|
|
runs-on: ubuntu-latest
|
2023-06-27 10:17:35 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Increment build number & replace version number
|
2023-09-02 10:18:01 +00:00
|
|
|
run: bash ./.github/scripts/increment_build_number.sh ${{ github.event.inputs.version }}
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-06-28 15:53:54 +00:00
|
|
|
- name: Commit changes
|
2023-06-27 10:17:35 +00:00
|
|
|
run: |
|
2023-08-28 14:01:04 +00:00
|
|
|
git config --local user.email "github-actions[bot]@users.noreply.github.com"
|
|
|
|
git config --local user.name "github-actions[bot]"
|
2023-06-27 10:17:35 +00:00
|
|
|
git add -A
|
|
|
|
git commit -m "Version bump"
|
2023-06-28 15:53:54 +00:00
|
|
|
|
|
|
|
- name: Push to main
|
|
|
|
uses: CasperWA/push-protected@v2
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.PUSH_TO_MAIN_TOKEN }}
|
|
|
|
branch: ${{ github.ref_name }}
|
|
|
|
unprotect_reviews: true
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
create-github-release:
|
2023-06-27 10:17:35 +00:00
|
|
|
name: Create Github release
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.github-release }}
|
2023-08-09 14:49:02 +00:00
|
|
|
needs: [build, generate-release-notes, update-version-in-repo]
|
2023-06-27 10:17:35 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
2023-08-09 14:39:41 +00:00
|
|
|
- name: Download apk
|
2023-06-27 10:17:35 +00:00
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2023-08-09 14:39:41 +00:00
|
|
|
name: m3_lightmeter_apk
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-08-05 19:11:23 +00:00
|
|
|
- name: Rename apk
|
|
|
|
run: mv app-prod-release.apk m3_lightmeter.apk
|
|
|
|
|
2023-08-09 14:39:41 +00:00
|
|
|
- name: Download release notes
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: whatsnew-en-US
|
|
|
|
|
2023-08-05 19:11:23 +00:00
|
|
|
- uses: ncipollo/release-action@v1.12.0
|
|
|
|
with:
|
|
|
|
artifacts: "m3_lightmeter.apk"
|
|
|
|
skipIfReleaseExists: true
|
|
|
|
tag: "v${{ github.event.inputs.version }}"
|
2023-08-09 10:24:12 +00:00
|
|
|
bodyFile: "whatsnew-en-US.md"
|
2023-08-05 19:11:23 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
- name: Delete apk artifact
|
2023-08-05 19:11:23 +00:00
|
|
|
uses: geekyeggo/delete-artifact@v2
|
|
|
|
with:
|
|
|
|
name: m3_lightmeter_apk
|
|
|
|
|
2023-08-09 14:39:41 +00:00
|
|
|
create-google-play-release:
|
|
|
|
name: Create Google Play release
|
2023-08-10 10:42:31 +00:00
|
|
|
if: ${{ inputs.google-play-release }}
|
2023-08-09 14:49:02 +00:00
|
|
|
needs: [build, generate-release-notes]
|
2023-08-05 19:11:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-08-10 10:42:31 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2023-06-27 10:17:35 +00:00
|
|
|
- name: Download app bundle
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m3_lightmeter_bundle
|
|
|
|
|
2023-08-05 19:11:23 +00:00
|
|
|
- name: Extract & zip merged_native_libs
|
2023-06-27 10:17:35 +00:00
|
|
|
run: |
|
2023-08-05 19:11:23 +00:00
|
|
|
unzip app-prod-release.aab
|
|
|
|
(cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .)
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-08-09 14:39:41 +00:00
|
|
|
- name: Download release notes
|
2023-08-09 10:24:12 +00:00
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
2023-08-09 14:39:41 +00:00
|
|
|
name: whatsnew-en-US
|
2023-08-09 10:24:12 +00:00
|
|
|
|
|
|
|
- name: Move release notes to a folder
|
|
|
|
run: |
|
2023-08-10 10:42:31 +00:00
|
|
|
mv whatsnew-en-US.md whatsnew-en-US
|
2023-08-09 10:24:12 +00:00
|
|
|
mkdir whatsnew
|
2023-08-10 10:42:31 +00:00
|
|
|
mv whatsnew-en-US whatsnew
|
|
|
|
|
|
|
|
# https://unix.stackexchange.com/questions/13466/can-grep-output-only-specified-groupings-that-match'
|
|
|
|
# https://stackoverflow.com/questions/74353311/github-workflow-unable-to-process-file-command-env-successfully
|
|
|
|
- name: Create Google Play release name
|
|
|
|
id: release-name
|
|
|
|
run: |
|
|
|
|
RELEASE_NAME=$(echo "$(cat pubspec.yaml)" | sed -n -r "s/^version:\s{1}(.*)[+](.*)$/700\2 (\1)/p")
|
|
|
|
echo "release_name=$RELEASE_NAME" >> $GITHUB_ENV
|
2023-08-09 14:39:41 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
- name: Create Google Play release
|
|
|
|
id: create-google-play-release-step
|
|
|
|
uses: r0adkll/upload-google-play@v1.1.1
|
|
|
|
with:
|
|
|
|
serviceAccountJsonPlainText: ${{ secrets.GH_ACTIONS_SERVICE_ACCOUNT_JSON }}
|
|
|
|
packageName: com.vodemn.lightmeter
|
|
|
|
releaseFiles: app-prod-release.aab
|
2023-08-10 10:42:31 +00:00
|
|
|
releaseName: ${{ env.release_name }}
|
2023-08-09 10:24:12 +00:00
|
|
|
track: production
|
2023-08-10 10:42:31 +00:00
|
|
|
status: completed
|
2023-08-09 10:24:12 +00:00
|
|
|
debugSymbols: merged_native_libs.zip
|
|
|
|
whatsNewDirectory: whatsnew
|
|
|
|
|
|
|
|
# https://docs.github.com/en/actions/learn-github-actions/expressions#failure-with-conditions
|
2023-08-05 19:11:23 +00:00
|
|
|
- name: Zip app bundle and merged_native_libs
|
2023-08-09 10:24:12 +00:00
|
|
|
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
2023-08-05 19:11:23 +00:00
|
|
|
run: zip m3_lightmeter_release.zip app-prod-release.aab merged_native_libs.zip
|
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
- name: Upload release zip to artifacts
|
|
|
|
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
2023-08-05 19:11:23 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
2023-06-27 10:17:35 +00:00
|
|
|
with:
|
2023-08-05 19:11:23 +00:00
|
|
|
name: m3_lightmeter_release
|
|
|
|
path: m3_lightmeter_release.zip
|
2023-08-09 10:24:12 +00:00
|
|
|
|
|
|
|
- name: Delete app bundle & merged native libs artifacts
|
|
|
|
if: ${{ always() }}
|
2023-08-05 19:11:23 +00:00
|
|
|
uses: geekyeggo/delete-artifact@v2
|
|
|
|
with:
|
2023-08-09 14:39:41 +00:00
|
|
|
name: m3_lightmeter_bundle
|
2023-08-09 10:24:12 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
name: Cleanup
|
|
|
|
if: ${{ always() }}
|
|
|
|
needs: [create-github-release, create-google-play-release]
|
2023-08-05 19:11:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-08-09 10:24:12 +00:00
|
|
|
- name: Delete release notes artifact
|
|
|
|
uses: geekyeggo/delete-artifact@v2
|
2023-08-05 19:11:23 +00:00
|
|
|
with:
|
2023-08-09 10:24:12 +00:00
|
|
|
name: whatsnew-en-US
|