mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 23:40:41 +00:00
Compare commits
No commits in common. "585c87ae996f37eaa514470cd5fc493bc3f36b27" and "75c504352a2e0afb26906f5d9bcc65668d1a8f86" have entirely different histories.
585c87ae99
...
75c504352a
1 changed files with 11 additions and 57 deletions
66
.github/workflows/create_release.yml
vendored
66
.github/workflows/create_release.yml
vendored
|
@ -3,11 +3,6 @@
|
||||||
# separate terms of service, privacy policy, and support
|
# separate terms of service, privacy policy, and support
|
||||||
# documentation.
|
# documentation.
|
||||||
|
|
||||||
|
|
||||||
# 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
|
|
||||||
|
|
||||||
name: Create new release
|
name: Create new release
|
||||||
|
|
||||||
run-name: Release v${{ inputs.version }}
|
run-name: Release v${{ inputs.version }}
|
||||||
|
@ -32,6 +27,7 @@ jobs:
|
||||||
name: Build .apk & .aab
|
name: Build .apk & .aab
|
||||||
runs-on: macos-11
|
runs-on: macos-11
|
||||||
timeout-minutes: 15
|
timeout-minutes: 15
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
|
@ -103,21 +99,6 @@ jobs:
|
||||||
name: m3_lightmeter_bundle
|
name: m3_lightmeter_bundle
|
||||||
path: build/app/outputs/bundle/prodRelease/app-prod-release.aab
|
path: build/app/outputs/bundle/prodRelease/app-prod-release.aab
|
||||||
|
|
||||||
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
|
|
||||||
|
|
||||||
update-version-in-repo:
|
update-version-in-repo:
|
||||||
name: Update repo version
|
name: Update repo version
|
||||||
needs: [build]
|
needs: [build]
|
||||||
|
@ -144,20 +125,18 @@ jobs:
|
||||||
branch: ${{ github.ref_name }}
|
branch: ${{ github.ref_name }}
|
||||||
unprotect_reviews: true
|
unprotect_reviews: true
|
||||||
|
|
||||||
create-github-release:
|
create-release:
|
||||||
name: Create Github release
|
name: Create Github release
|
||||||
|
needs: [update-version-in-repo]
|
||||||
if: github.ref_name == 'main'
|
if: github.ref_name == 'main'
|
||||||
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 & 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
|
||||||
|
@ -167,9 +146,8 @@ jobs:
|
||||||
artifacts: "m3_lightmeter.apk"
|
artifacts: "m3_lightmeter.apk"
|
||||||
skipIfReleaseExists: true
|
skipIfReleaseExists: true
|
||||||
tag: "v${{ github.event.inputs.version }}"
|
tag: "v${{ github.event.inputs.version }}"
|
||||||
bodyFile: "whatsnew-en-US.md"
|
|
||||||
|
|
||||||
- name: Delete apk artifact
|
- name: Delete no longer used apk artifact
|
||||||
uses: geekyeggo/delete-artifact@v2
|
uses: geekyeggo/delete-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: m3_lightmeter_apk
|
name: m3_lightmeter_apk
|
||||||
|
@ -195,10 +173,11 @@ jobs:
|
||||||
name: merged_native_libs
|
name: merged_native_libs
|
||||||
path: merged_native_libs.zip
|
path: merged_native_libs.zip
|
||||||
|
|
||||||
|
# TODO: Automate Google Play releases creation
|
||||||
create-google-play-release:
|
create-google-play-release:
|
||||||
|
if: false
|
||||||
name: Create Google Play release
|
name: Create Google Play release
|
||||||
if: github.ref_name == 'main'
|
needs: [extract-merged-native-libs]
|
||||||
needs: [generate-release-notes, extract-merged-native-libs]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Download app bundle & merged native libs
|
- name: Download app bundle & merged native libs
|
||||||
|
@ -207,11 +186,8 @@ jobs:
|
||||||
name: |
|
name: |
|
||||||
m3_lightmeter_bundle
|
m3_lightmeter_bundle
|
||||||
merged_native_libs
|
merged_native_libs
|
||||||
whatsnew-en-US
|
|
||||||
|
|
||||||
# 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
|
|
||||||
uses: r0adkll/upload-google-play@v1.1.1
|
uses: r0adkll/upload-google-play@v1.1.1
|
||||||
with:
|
with:
|
||||||
serviceAccountJsonPlainText: ${{ secrets.GH_ACTIONS_SERVICE_ACCOUNT_JSON }}
|
serviceAccountJsonPlainText: ${{ secrets.GH_ACTIONS_SERVICE_ACCOUNT_JSON }}
|
||||||
|
@ -221,32 +197,10 @@ jobs:
|
||||||
status: draft
|
status: draft
|
||||||
userFraction: 1.0
|
userFraction: 1.0
|
||||||
debugSymbols: merged_native_libs.zip
|
debugSymbols: merged_native_libs.zip
|
||||||
whatsNewDirectory: whatsnew
|
|
||||||
|
|
||||||
- name: Zip app bundle and merged_native_libs
|
- name: Delete no longer used app bundle & merged native libs artifacts
|
||||||
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
|
||||||
run: zip m3_lightmeter_release.zip app-prod-release.aab merged_native_libs.zip
|
|
||||||
|
|
||||||
- name: Upload release zip to artifacts
|
|
||||||
if: ${{ failure() && steps.create-google-play-release-step.conclusion == 'failure' }}
|
|
||||||
uses: actions/upload-artifact@v3
|
|
||||||
with:
|
|
||||||
name: m3_lightmeter_release
|
|
||||||
path: m3_lightmeter_release.zip
|
|
||||||
|
|
||||||
- name: Delete app bundle & merged native libs artifacts
|
|
||||||
uses: geekyeggo/delete-artifact@v2
|
uses: geekyeggo/delete-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: |
|
name: |
|
||||||
m3_lightmeter_bundle
|
m3_lightmeter_bundle
|
||||||
merged_native_libs
|
merged_native_libs
|
||||||
|
|
||||||
cleanup:
|
|
||||||
name: Cleanup
|
|
||||||
needs: [create-github-release, create-google-play-release]
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Delete release notes artifact
|
|
||||||
uses: geekyeggo/delete-artifact@v2
|
|
||||||
with:
|
|
||||||
name: whatsnew-en-US
|
|
||||||
|
|
Loading…
Reference in a new issue