chore(ci): enable RC rolling builds (#28680) #545
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
| ############################################################################################## | |
| # | |
| # Expo Dev Build — replaces the Bitrise expo_dev_pipeline. | |
| # | |
| # Triggered on every push to main. Builds the main-dev configuration (Debug, simulator) | |
| # for both iOS and Android using the reusable build.yml workflow. | |
| # | |
| # No version bump or TestFlight upload — this is a dev/simulator build only. | |
| # Artifacts (iOS .app zip + Android APK) are uploaded as GitHub Actions artifacts. | |
| # | |
| # [skip ci] commits (e.g. version bumps) are automatically skipped by GitHub Actions. | |
| # | |
| ############################################################################################## | |
| name: Expo Dev Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| jobs: | |
| build-dev: | |
| name: Expo dev build (main-dev) | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| build_name: main-dev | |
| platform: both | |
| skip_version_bump: true | |
| secrets: inherit |