mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-26 09:20:45 +00:00
Compare commits
No commits in common. "738460b7bf656a202055cbdf9b89f2ae7c5f645d" and "585c87ae996f37eaa514470cd5fc493bc3f36b27" have entirely different histories.
738460b7bf
...
585c87ae99
2 changed files with 34 additions and 37 deletions
69
.github/workflows/create_release.yml
vendored
69
.github/workflows/create_release.yml
vendored
|
@ -23,14 +23,6 @@ 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
|
||||||
|
@ -38,15 +30,14 @@ 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: 30
|
timeout-minutes: 15
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- uses: actions/setup-java@v3
|
- uses: actions/setup-java@v2
|
||||||
with:
|
with:
|
||||||
distribution: "zulu"
|
distribution: "zulu"
|
||||||
java-version: "11"
|
java-version: "11"
|
||||||
|
@ -129,7 +120,6 @@ 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:
|
||||||
|
@ -156,25 +146,22 @@ jobs:
|
||||||
|
|
||||||
create-github-release:
|
create-github-release:
|
||||||
name: Create Github release
|
name: Create Github release
|
||||||
if: ${{ inputs.github-release-release }}
|
if: github.ref_name == 'main'
|
||||||
needs: [build, generate-release-notes, update-version-in-repo]
|
needs: [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
|
- name: Download apk & release notes
|
||||||
uses: actions/download-artifact@v3
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: m3_lightmeter_apk
|
name: |
|
||||||
|
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"
|
||||||
|
@ -187,10 +174,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: m3_lightmeter_apk
|
name: m3_lightmeter_apk
|
||||||
|
|
||||||
create-google-play-release:
|
extract-merged-native-libs:
|
||||||
name: Create Google Play release
|
name: Extract merged native libraries
|
||||||
if: ${{ inputs.google-play-release }}
|
needs: [build]
|
||||||
needs: [build, generate-release-notes]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download app bundle
|
- name: Download app bundle
|
||||||
|
@ -203,16 +189,27 @@ 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: 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
|
uses: actions/download-artifact@v3
|
||||||
with:
|
with:
|
||||||
name: whatsnew-en-US
|
name: |
|
||||||
|
m3_lightmeter_bundle
|
||||||
- name: Move release notes to a folder
|
merged_native_libs
|
||||||
run: |
|
whatsnew-en-US
|
||||||
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
|
||||||
|
@ -222,10 +219,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
|
||||||
|
@ -238,14 +235,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: m3_lightmeter_bundle
|
name: |
|
||||||
|
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.1+37
|
version: 0.13.0+36
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=3.0.0 <4.0.0"
|
sdk: ">=3.0.0 <4.0.0"
|
||||||
|
|
Loading…
Reference in a new issue