Created
February 15, 2025 15:44
-
-
Save watadarkstar/690064ce3c87696d7b7f52bb20257a97 to your computer and use it in GitHub Desktop.
Expo build and submit
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: Build and submit to production | |
on: | |
push: | |
branches: ["main"] | |
pull_request_labeled: | |
labels: | |
- "eas-build-submit-production-all" | |
jobs: | |
build_android: | |
name: Build Android | |
type: build | |
params: | |
platform: android | |
profile: production | |
build_ios: | |
name: Build iOS device | |
type: build | |
params: | |
platform: ios | |
profile: production | |
submit_android_build: | |
name: Submit Android Build | |
needs: [build_android] | |
type: submit | |
params: | |
build_id: ${{ needs.build_android.outputs.build_id }} | |
submit_ios_build: | |
name: Submit iOS Build | |
needs: [build_ios] | |
type: submit | |
params: | |
build_id: ${{ needs.build_ios.outputs.build_id }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment