Skip to content

Commit 45bb920

Browse files
committed
Fix: Use correct fastlane command in cd.yml
The `bundle exec` prefix is not needed for fastlane commands when fastlane is installed globally, which it is in the GitHub Actions runner environment. This change simplifies the command.
1 parent 82af5b9 commit 45bb920

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
env:
2828
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
2929
- name: Build, Test & Upload to Google Play
30-
run: bundle exec fastlane build_bundle_publish
30+
run: fastlane build_bundle_publish
3131
- name: Archive build artifacts
3232
if: always()
3333
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)