mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
Compare commits
16 commits
585c87ae99
...
738460b7bf
Author | SHA1 | Date | |
---|---|---|---|
|
738460b7bf | ||
|
407d1a5891 | ||
|
5c02488d64 | ||
|
62cddc1f38 | ||
|
75599ea5df | ||
|
6e3588a72e | ||
|
dafbc68288 | ||
|
bdb0442dd1 | ||
|
d41fa6fa84 | ||
|
966a3c676c | ||
|
4231506c48 | ||
|
f8b060c2b8 | ||
|
b5786da4cf | ||
|
69b67d3bb4 | ||
|
b9412c7441 | ||
|
82942c09e5 |
2 changed files with 37 additions and 34 deletions
69
.github/workflows/create_release.yml
vendored
69
.github/workflows/create_release.yml
vendored
|
@ -23,6 +23,14 @@ on:
|
||||||
description: "Release notes"
|
description: "Release notes"
|
||||||
required: true
|
required: true
|
||||||
type: string
|
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:
|
env:
|
||||||
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=240/320 -t lib/main_prod.dart
|
BUILD_ARGS: --release --flavor prod --dart-define cameraPreviewAspectRatio=240/320 -t lib/main_prod.dart
|
||||||
|
@ -30,14 +38,15 @@ env:
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: Build .apk & .aab
|
name: Build .apk & .aab
|
||||||
|
if: ${{ inputs.github-release-release }} || ${{ inputs.google-play-release }}
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
timeout-minutes: 15
|
timeout-minutes: 30
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- uses: actions/setup-java@v2
|
- uses: actions/setup-java@v3
|
||||||
with:
|
with:
|
||||||
distribution: "zulu"
|
distribution: "zulu"
|
||||||
java-version: "11"
|
java-version: "11"
|
||||||
|
@ -120,6 +129,7 @@ jobs:
|
||||||
|
|
||||||
update-version-in-repo:
|
update-version-in-repo:
|
||||||
name: Update repo version
|
name: Update repo version
|
||||||
|
if: ${{ inputs.github-release-release }}
|
||||||
needs: [build]
|
needs: [build]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
@ -146,22 +156,25 @@ jobs:
|
||||||
|
|
||||||
create-github-release:
|
create-github-release:
|
||||||
name: Create Github release
|
name: Create Github release
|
||||||
if: github.ref_name == 'main'
|
if: ${{ inputs.github-release-release }}
|
||||||
needs: [generate-release-notes, update-version-in-repo]
|
needs: [build, generate-release-notes, update-version-in-repo]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
steps:
|
steps:
|
||||||
- name: Download apk & release notes
|
- name: Download apk
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: |
|
name: m3_lightmeter_apk
|
||||||
m3_lightmeter_apk
|
|
||||||
whatsnew-en-US
|
|
||||||
|
|
||||||
- name: Rename apk
|
- name: Rename apk
|
||||||
run: mv app-prod-release.apk m3_lightmeter.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
|
- uses: ncipollo/release-action@v1.12.0
|
||||||
with:
|
with:
|
||||||
artifacts: "m3_lightmeter.apk"
|
artifacts: "m3_lightmeter.apk"
|
||||||
|
@ -174,9 +187,10 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: m3_lightmeter_apk
|
name: m3_lightmeter_apk
|
||||||
|
|
||||||
extract-merged-native-libs:
|
create-google-play-release:
|
||||||
name: Extract merged native libraries
|
name: Create Google Play release
|
||||||
needs: [build]
|
if: ${{ inputs.google-play-release }}
|
||||||
|
needs: [build, generate-release-notes]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download app bundle
|
- name: Download app bundle
|
||||||
|
@ -189,27 +203,16 @@ jobs:
|
||||||
unzip app-prod-release.aab
|
unzip app-prod-release.aab
|
||||||
(cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .)
|
(cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .)
|
||||||
|
|
||||||
- name: Upload merged native libs to artifacts
|
- name: Download release notes
|
||||||
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
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: |
|
name: whatsnew-en-US
|
||||||
m3_lightmeter_bundle
|
|
||||||
merged_native_libs
|
- name: Move release notes to a folder
|
||||||
whatsnew-en-US
|
run: |
|
||||||
|
mkdir whatsnew
|
||||||
|
mv whatsnew-en-US.md whatsnew
|
||||||
|
|
||||||
# TODO: create whatsnew folder and move release notes there
|
|
||||||
- name: Create Google Play release
|
- name: Create Google Play release
|
||||||
id: create-google-play-release-step
|
id: create-google-play-release-step
|
||||||
uses: r0adkll/upload-google-play@v1.1.1
|
uses: r0adkll/upload-google-play@v1.1.1
|
||||||
|
@ -219,10 +222,10 @@ jobs:
|
||||||
releaseFiles: app-prod-release.aab
|
releaseFiles: app-prod-release.aab
|
||||||
track: production
|
track: production
|
||||||
status: draft
|
status: draft
|
||||||
userFraction: 1.0
|
|
||||||
debugSymbols: merged_native_libs.zip
|
debugSymbols: merged_native_libs.zip
|
||||||
whatsNewDirectory: whatsnew
|
whatsNewDirectory: whatsnew
|
||||||
|
|
||||||
|
# https://docs.github.com/en/actions/learn-github-actions/expressions#failure-with-conditions
|
||||||
- name: Zip app bundle and merged_native_libs
|
- name: Zip app bundle and merged_native_libs
|
||||||
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
||||||
run: zip m3_lightmeter_release.zip app-prod-release.aab merged_native_libs.zip
|
run: zip m3_lightmeter_release.zip app-prod-release.aab merged_native_libs.zip
|
||||||
|
@ -235,14 +238,14 @@ jobs:
|
||||||
path: m3_lightmeter_release.zip
|
path: m3_lightmeter_release.zip
|
||||||
|
|
||||||
- name: Delete app bundle & merged native libs artifacts
|
- name: Delete app bundle & merged native libs artifacts
|
||||||
|
if: ${{ always() }}
|
||||||
uses: geekyeggo/delete-artifact@v2
|
uses: geekyeggo/delete-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: |
|
name: m3_lightmeter_bundle
|
||||||
m3_lightmeter_bundle
|
|
||||||
merged_native_libs
|
|
||||||
|
|
||||||
cleanup:
|
cleanup:
|
||||||
name: Cleanup
|
name: Cleanup
|
||||||
|
if: ${{ always() }}
|
||||||
needs: [create-github-release, create-google-play-release]
|
needs: [create-github-release, create-google-play-release]
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
name: lightmeter
|
name: lightmeter
|
||||||
description: A new Flutter project.
|
description: A new Flutter project.
|
||||||
publish_to: "none"
|
publish_to: "none"
|
||||||
version: 0.13.0+36
|
version: 0.13.1+37
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue