Skip to content

Commit

Permalink
resolve conflicting lane names
Browse files Browse the repository at this point in the history
  • Loading branch information
jnewc committed Sep 12, 2023
1 parent e816741 commit 5472f9c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
yarn
- name: Distribute the React Native Android app on Appetize and upload to BrowserStack 🚀
run: bundle exec fastlane android preview
run: bundle exec fastlane android upload_build_to_appetize_android
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
SOURCE_BRANCH: ${{ github.head_ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios-appetize.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
npm run build:ios:dev
- name: Distribute the React Native iOS app on Appetize 🚀
run: |
bundle exec fastlane ios upload_build_to_appetize
bundle exec fastlane ios upload_build_to_appetize_ios
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_PRIVATE_KEY: ${{ secrets.SSH_KEY }}
Expand Down
4 changes: 2 additions & 2 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
platform :ios do
import "IOSFastFile"
desc 'Upload the React Native Android build to Appetize'
lane :upload_build_to_appetize do
lane :upload_build_to_appetize_ios do
appetize_build_and_upload
end
end

platform :android do
import "AndroidFastFile"
desc 'Upload the React Native Android build to Appetize'
lane :upload_build_to_appetize do
lane :upload_build_to_appetize_android do
preview
end
end

0 comments on commit 5472f9c

Please sign in to comment.