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
|
2024-03-14 19:54:56 +00:00
|
|
|
run-integration-tests:
|
|
|
|
description: "Run integration tests"
|
|
|
|
required: true
|
|
|
|
type: boolean
|
2024-03-17 12:23:10 +00:00
|
|
|
default: false
|
2023-02-15 21:36:47 +00:00
|
|
|
|
|
|
|
jobs:
|
2024-03-14 10:55:26 +00:00
|
|
|
run-integration-tests:
|
|
|
|
name: Run integration tests
|
2024-03-14 19:54:56 +00:00
|
|
|
if: ${{ inputs.run-integration-tests }}
|
2024-03-14 10:55:26 +00:00
|
|
|
uses: ./.github/workflows/run_integration_tests.yml
|
2024-03-14 14:10:18 +00:00
|
|
|
secrets: inherit
|
2024-03-14 10:55:26 +00:00
|
|
|
|
2024-03-14 19:29:36 +00:00
|
|
|
build-android:
|
2024-03-16 17:12:00 +00:00
|
|
|
name: Build Android
|
2024-03-14 19:41:13 +00:00
|
|
|
needs: [run-integration-tests]
|
2024-03-15 07:34:19 +00:00
|
|
|
if: ${{ always() && !failure() && !cancelled() }}
|
2024-03-14 14:10:18 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-03-14 19:29:36 +00:00
|
|
|
binary-type: [apk, appbundle]
|
|
|
|
uses: ./.github/workflows/build_apk.yml
|
|
|
|
secrets: inherit
|
2024-03-14 19:12:59 +00:00
|
|
|
with:
|
|
|
|
binary-type: ${{ matrix.binary-type }}
|
2024-03-14 19:29:36 +00:00
|
|
|
flavor: prod
|
|
|
|
stage-backend: false
|
|
|
|
version: ${{ inputs.version }}
|
|
|
|
|
|
|
|
build-ios:
|
2024-03-16 17:12:00 +00:00
|
|
|
name: Build iOS
|
2024-03-14 19:41:13 +00:00
|
|
|
needs: [run-integration-tests]
|
2024-03-16 10:30:24 +00:00
|
|
|
if: ${{ always() && !failure() && !cancelled() }}
|
2024-03-14 19:29:36 +00:00
|
|
|
uses: ./.github/workflows/build_ipa.yml
|
|
|
|
secrets: inherit
|
|
|
|
with:
|
|
|
|
stage-backend: false
|
2024-03-14 19:12:59 +00:00
|
|
|
version: ${{ inputs.version }}
|
2023-06-27 10:17:35 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
generate-release-notes:
|
|
|
|
name: Generate release notes
|
2024-03-14 19:54:56 +00:00
|
|
|
needs: [build-android, build-ios]
|
2023-08-09 10:24:12 +00:00
|
|
|
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
|
|
|
|
|
2024-03-14 19:29:36 +00:00
|
|
|
create-github-release:
|
|
|
|
name: Create Github release
|
2024-03-14 19:54:56 +00:00
|
|
|
needs: [generate-release-notes]
|
2023-06-28 15:53:54 +00:00
|
|
|
runs-on: ubuntu-latest
|
2024-03-14 19:29:36 +00:00
|
|
|
permissions:
|
|
|
|
contents: write
|
2023-06-27 10:17:35 +00:00
|
|
|
steps:
|
2024-03-17 09:19:57 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
2024-03-17 16:00:08 +00:00
|
|
|
- name: Download apk
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m3_lightmeter_apk
|
|
|
|
|
2023-06-27 10:17:35 +00:00
|
|
|
- name: Increment build number & replace version number
|
2023-09-02 10:45:57 +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-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 14:39:41 +00:00
|
|
|
create-google-play-release:
|
|
|
|
name: Create Google Play release
|
2024-03-14 19:54:56 +00:00
|
|
|
needs: [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:
|
2024-03-14 14:10:18 +00:00
|
|
|
name: m3_lightmeter_appbundle
|
2023-06-27 10:17:35 +00:00
|
|
|
|
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
|
|
|
|
|
2024-03-16 10:27:46 +00:00
|
|
|
upload-to-app-store:
|
|
|
|
name: Upload to App Store
|
2024-03-14 19:54:56 +00:00
|
|
|
needs: [generate-release-notes]
|
2024-03-16 22:03:51 +00:00
|
|
|
runs-on: macos-13
|
2024-03-14 19:32:31 +00:00
|
|
|
steps:
|
2024-03-16 10:27:46 +00:00
|
|
|
- uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Download ipa
|
|
|
|
uses: actions/download-artifact@v3
|
|
|
|
with:
|
|
|
|
name: m3_lightmeter_ipa
|
2024-03-16 20:10:15 +00:00
|
|
|
|
2024-03-16 10:27:46 +00:00
|
|
|
- name: Upload app to TestFlight
|
2024-03-17 08:44:55 +00:00
|
|
|
run: xcrun altool --upload-app -f lightmeter.ipa -t ios -u ${{ secrets.APP_STORE_USERNAME }} -p ${{ secrets.APP_STORE_PASSWORD }}
|
2024-03-14 19:29:36 +00:00
|
|
|
|
2023-08-09 10:24:12 +00:00
|
|
|
cleanup:
|
|
|
|
name: Cleanup
|
|
|
|
if: ${{ always() }}
|
2024-03-14 19:36:02 +00:00
|
|
|
needs:
|
2024-03-16 10:27:46 +00:00
|
|
|
[create-github-release, create-google-play-release, upload-to-app-store]
|
2023-08-05 19:11:23 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-17 16:00:08 +00:00
|
|
|
- name: Delete release artifacts
|
2023-08-09 10:24:12 +00:00
|
|
|
uses: geekyeggo/delete-artifact@v2
|
2023-08-05 19:11:23 +00:00
|
|
|
with:
|
2024-03-17 16:00:08 +00:00
|
|
|
failOnError: false
|
|
|
|
name: |
|
|
|
|
m3_lightmeter_apk
|
|
|
|
m3_lightmeter_appbundle
|
|
|
|
m3_lightmeter_ipa
|
|
|
|
whatsnew-en-US
|