From f10182956807483bb0df85887e07575375ab547a Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 23:35:21 +0000 Subject: [PATCH 1/2] Initial plan From 7950c9b55f91fbd8da824908058e7bbc8b04b21c Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 27 Apr 2026 23:36:22 +0000 Subject: [PATCH 2/2] feat: add skipPublishRelease input to mt-release.yml to skip GitHub & all Play Store release Agent-Logs-Url: https://github.com/mtransitapps/commons/sessions/cafffe9f-fcfe-4f9a-912e-64694aac35bf Co-authored-by: mmathieum <177998+mmathieum@users.noreply.github.com> --- shared-overwrite/.github/workflows/mt-release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/shared-overwrite/.github/workflows/mt-release.yml b/shared-overwrite/.github/workflows/mt-release.yml index b60eb85d..c08222ac 100644 --- a/shared-overwrite/.github/workflows/mt-release.yml +++ b/shared-overwrite/.github/workflows/mt-release.yml @@ -28,10 +28,16 @@ on: type: boolean default: false required: false + skipPublishRelease: + description: 'Skip GitHub & all Play Store release (useful to generate APK/AAB)' + type: boolean + default: false + required: false # gh workflow run mt-release.yml # gh workflow run mt-release.yml --ref $(git rev-parse --abbrev-ref HEAD) -f allowNonDefault=true # gh workflow run mt-release.yml -f skipStoreAll=true # gh workflow run mt-release.yml -f skipStoreProduction=true +# gh workflow run mt-release.yml -f skipPublishRelease=true # gh run list --workflow=mt-release.yml # gh run watch ; gh browse --branch concurrency: @@ -138,6 +144,7 @@ jobs: fi - name: MT Publish release + if: ${{ github.event.inputs.skipPublishRelease != 'true' }} run: ./publish_app_release.sh env: GITHUB_TOKEN: ${{ secrets.MT_PAT }} @@ -145,6 +152,7 @@ jobs: - name: MT check screenshot age id: mt-check-screenshot-age + if: ${{ github.event.inputs.skipPublishRelease != 'true' }} continue-on-error: true run: | SCREENSHOT_DIR="app-android/src/main/play/listings/en-US/graphics/phone-screenshots"