# 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. # 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 run-name: Release v${{ inputs.version }} on: workflow_dispatch: inputs: version: description: "Version" required: true type: string release-notes: description: "Release notes" required: true type: string jobs: run-integration-tests: name: Run integration tests uses: ./.github/workflows/run_integration_tests.yml secrets: inherit build-android: name: Build Android (${{ matrix.binary-type }}) needs: [run-integration-tests] runs-on: macos-11 strategy: matrix: binary-type: [apk, appbundle] steps: - uses: ./.github/workflows/build_android.yml with: binary-type: ${{ matrix.binary-type }} flavor: prod stage-backend: false version: ${{ inputs.version }} generate-release-notes: name: Generate release notes needs: [build-android] 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: name: Update repo version needs: [build-android] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Increment build number & replace version number run: bash ./.github/scripts/increment_build_number.sh ${{ github.event.inputs.version }} - name: Commit changes run: | git config --local user.email "github-actions[bot]@users.noreply.github.com" git config --local user.name "github-actions[bot]" git add -A git commit -m "Version bump" - name: Push to main uses: CasperWA/push-protected@v2 with: token: ${{ secrets.PUSH_TO_MAIN_TOKEN }} branch: ${{ github.ref_name }} unprotect_reviews: true create-github-release: name: Create Github release needs: [build-android, generate-release-notes, update-version-in-repo] runs-on: ubuntu-latest permissions: contents: write steps: - name: Download apk uses: actions/download-artifact@v3 with: name: m3_lightmeter_apk - 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" skipIfReleaseExists: true tag: "v${{ github.event.inputs.version }}" bodyFile: "whatsnew-en-US.md" - name: Delete apk artifact uses: geekyeggo/delete-artifact@v2 with: name: m3_lightmeter_apk create-google-play-release: name: Create Google Play release needs: [build-android, generate-release-notes] runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 with: submodules: recursive - name: Download app bundle uses: actions/download-artifact@v3 with: name: m3_lightmeter_appbundle - name: Extract & zip merged_native_libs run: | unzip app-prod-release.aab (cd base/lib && zip -r "$OLDPWD/merged_native_libs.zip" .) - name: Download release notes uses: actions/download-artifact@v3 with: name: whatsnew-en-US - name: Move release notes to a folder run: | mv whatsnew-en-US.md whatsnew-en-US mkdir whatsnew 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 - 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 releaseName: ${{ env.release_name }} track: production status: completed 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 - 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 if: ${{ always() }} uses: geekyeggo/delete-artifact@v2 with: name: m3_lightmeter_appbundle cleanup: name: Cleanup if: ${{ always() }} 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