bump version to 4.2.1 with updated MSIX version #131
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Android & iOS & Linux & Windows Build with Store Uploads | |
| permissions: | |
| contents: write | |
| on: | |
| push: | |
| branches: | |
| - release | |
| workflow_dispatch: | |
| inputs: | |
| send_telegram: | |
| description: "Send APK to Telegram?" | |
| required: true | |
| default: "false" | |
| upload_to_play_store: | |
| description: "Upload AAB to Google Play Store?" | |
| required: false | |
| default: "false" | |
| type: boolean | |
| play_track: | |
| description: "Google Play track (internal, alpha, beta, production)" | |
| required: false | |
| default: "internal" | |
| type: choice | |
| options: | |
| - internal | |
| - alpha | |
| - beta | |
| - production | |
| upload_to_app_store: | |
| description: "Upload IPA to App Store/TestFlight?" | |
| required: false | |
| default: "false" | |
| type: boolean | |
| app_store_destination: | |
| description: "App Store destination (testflight, production)" | |
| required: false | |
| default: "testflight" | |
| type: choice | |
| options: | |
| - testflight | |
| - production | |
| download_android_framework: | |
| description: "Download DXcore-android.zip?" | |
| required: false | |
| default: "true" | |
| type: boolean | |
| download_ios_framework: | |
| description: "Download IosDXcore.xcframework.zip?" | |
| required: false | |
| default: "false" | |
| type: boolean | |
| jobs: | |
| android: | |
| uses: ./.github/workflows/android.yml | |
| secrets: inherit | |
| ios: | |
| if: false | |
| uses: ./.github/workflows/ios.yml | |
| secrets: inherit | |
| windows: | |
| uses: ./.github/workflows/windows.yml | |
| secrets: inherit | |
| linux: | |
| if: false | |
| uses: ./.github/workflows/linux.yml | |
| secrets: inherit | |
| release-to-telegram: | |
| needs: [android, windows] | |
| uses: ./.github/workflows/telegram.yml | |
| secrets: inherit | |
| release: | |
| needs: [android, windows] | |
| uses: ./.github/workflows/release.yml | |
| secrets: inherit |