feat(cells): hide restore option from current version (WPB-21661) #1768
Workflow file for this run
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: "Develop" | |
| on: | |
| merge_group: | |
| types: [ checks_requested ] | |
| branches: [ develop ] | |
| pull_request: | |
| branches: | |
| - develop | |
| types: [ opened, synchronize ] | |
| permissions: | |
| contents: write | |
| actions: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.event.merge_group.head_sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Build for PR and merge group validation (no store deployment) | |
| build-validation: | |
| uses: ./.github/workflows/build-unified.yml | |
| with: | |
| concurrency-group-suffix: pr | |
| build-config: | | |
| [ | |
| { | |
| "flavor": "Dev", | |
| "variant": "Debug", | |
| "keystore-type": "debug", | |
| "build-type": "apk", | |
| "generate-version-file": false, | |
| "deployment-targets": [ | |
| { | |
| "type": "s3" | |
| } | |
| ] | |
| } | |
| ] | |
| enable-deployment: true | |
| secrets: inherit |