Ensure all available localizations are recognized #1647
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: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - feature/* | |
| - feature-* | |
| - issue/* | |
| - issue-* | |
| pull_request: | |
| branches: | |
| - develop | |
| # macOS environments: https://github.com/actions/virtual-environments/tree/main/images/macos | |
| jobs: | |
| build: | |
| name: CI build | |
| runs-on: macos-15 | |
| steps: | |
| - name: Repository | |
| uses: actions/checkout@v2 | |
| - name: Setup Build Environment | |
| env: | |
| NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }} | |
| NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }} | |
| run: exec ./.github/scripts/setup.sh | |
| - name: Select required Xcode version | |
| run: sudo xcode-select -switch /Applications/Xcode_26.0.1.app | |
| - name: Build App | |
| run: bundle exec fastlane ios build_only |