Compare commits

..

No commits in common. "738460b7bf656a202055cbdf9b89f2ae7c5f645d" and "585c87ae996f37eaa514470cd5fc493bc3f36b27" have entirely different histories.

2 changed files with 34 additions and 37 deletions

View file

@ -23,14 +23,6 @@ on:
description: "Release notes"
required: true
type: string
github-release-release:
type: boolean
description: Create Github release
default: true
google-play-release:
type: boolean
description: Create Google Play release
default: true
env:
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=240/320 -t lib/main_prod.dart
@ -38,15 +30,14 @@ env:
jobs:
build:
name: Build .apk & .aab
if: ${{ inputs.github-release-release }} || ${{ inputs.google-play-release }}
runs-on: macos-11
timeout-minutes: 30
timeout-minutes: 15
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- uses: actions/setup-java@v3
- uses: actions/setup-java@v2
with:
distribution: "zulu"
java-version: "11"
@ -129,7 +120,6 @@ jobs:
update-version-in-repo:
name: Update repo version
if: ${{ inputs.github-release-release }}
needs: [build]
runs-on: ubuntu-latest
steps:
@ -156,25 +146,22 @@ jobs:
create-github-release:
name: Create Github release
if: ${{ inputs.github-release-release }}
needs: [build, generate-release-notes, update-version-in-repo]
if: github.ref_name == 'main'
needs: [generate-release-notes, update-version-in-repo]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download apk
- name: Download apk & release notes
uses: actions/download-artifact@v3
with:
name: m3_lightmeter_apk
name: |
m3_lightmeter_apk
whatsnew-en-US
- name: Rename apk
run: mv app-prod-release.apk m3_lightmeter.apk
- name: Download release notes
uses: actions/download-artifact@v3
with:
name: whatsnew-en-US
- uses: ncipollo/release-action@v1.12.0
with:
artifacts: "m3_lightmeter.apk"
@ -187,10 +174,9 @@ jobs:
with:
name: m3_lightmeter_apk
create-google-play-release:
name: Create Google Play release
if: ${{ inputs.google-play-release }}
needs: [build, generate-release-notes]
extract-merged-native-libs:
name: Extract merged native libraries
needs: [build]
runs-on: ubuntu-latest
steps:
- name: Download app bundle
@ -203,16 +189,27 @@ jobs:
unzip app-prod-release.aab
(cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .)
- name: Download release notes
- name: Upload merged native libs to artifacts
uses: actions/upload-artifact@v3
with:
name: merged_native_libs
path: merged_native_libs.zip
create-google-play-release:
name: Create Google Play release
if: github.ref_name == 'main'
needs: [generate-release-notes, extract-merged-native-libs]
runs-on: ubuntu-latest
steps:
- name: Download app bundle & merged native libs
uses: actions/download-artifact@v3
with:
name: whatsnew-en-US
- name: Move release notes to a folder
run: |
mkdir whatsnew
mv whatsnew-en-US.md whatsnew
name: |
m3_lightmeter_bundle
merged_native_libs
whatsnew-en-US
# TODO: create whatsnew folder and move release notes there
- name: Create Google Play release
id: create-google-play-release-step
uses: r0adkll/upload-google-play@v1.1.1
@ -222,10 +219,10 @@ jobs:
releaseFiles: app-prod-release.aab
track: production
status: draft
userFraction: 1.0
debugSymbols: merged_native_libs.zip
whatsNewDirectory: whatsnew
# https://docs.github.com/en/actions/learn-github-actions/expressions#failure-with-conditions
- name: Zip app bundle and merged_native_libs
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
run: zip m3_lightmeter_release.zip app-prod-release.aab merged_native_libs.zip
@ -238,14 +235,14 @@ jobs:
path: m3_lightmeter_release.zip
- name: Delete app bundle & merged native libs artifacts
if: ${{ always() }}
uses: geekyeggo/delete-artifact@v2
with:
name: m3_lightmeter_bundle
name: |
m3_lightmeter_bundle
merged_native_libs
cleanup:
name: Cleanup
if: ${{ always() }}
needs: [create-github-release, create-google-play-release]
runs-on: ubuntu-latest
steps:

View file

@ -1,7 +1,7 @@
name: lightmeter
description: A new Flutter project.
publish_to: "none"
version: 0.13.1+37
version: 0.13.0+36
environment:
sdk: ">=3.0.0 <4.0.0"