[PIMOB-4287]: adding base url prefix to Frames SDK for multi-region #161
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: Verify Example App Frames | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| types: [ opened, synchronize, reopened ] | |
| branches: [ master, "bugfix/*", "feature/*", "release/*" ] | |
| paths: | |
| - 'checkout/**' | |
| - 'frames/**' | |
| - 'example_app_frames/**' | |
| - 'buildSrc/**' | |
| - 'build.gradle.kt' | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| verify-module: | |
| uses: ./.github/workflows/verification-flow.yml | |
| secrets: inherit | |
| with: | |
| module: example_app_frames | |
| run-ktlint: true | |
| push-apk: true |