Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions shared-overwrite/.github/workflows/mt-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -138,13 +144,15 @@ jobs:
fi

- name: MT Publish release
if: ${{ github.event.inputs.skipPublishRelease != 'true' }}
run: ./publish_app_release.sh
env:
GITHUB_TOKEN: ${{ secrets.MT_PAT }}
MT_ENCRYPT_KEY: ${{ secrets.MT_ENCRYPT_KEY }}

- 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"
Expand Down