Skip to content

Commit 6879aa6

Browse files
fix(taskfile): use bundle exec for fastlane commands
Fastlane is managed by bundler and must be invoked via 'bundle exec'. Updated all fastlane task commands to use 'bundle exec fastlane' prefix. Fixes: taskfile execution in CI where fastlane is not in global PATH Tasks updated: - ios:certificates - ios:testflight - ios:release
1 parent b0f8b0b commit 6879aa6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

taskfiles/tauri.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -264,7 +264,7 @@ tasks:
264264
ios:certificates:
265265
desc: "Sync code signing certificates"
266266
cmds:
267-
- fastlane certificates
267+
- bundle exec fastlane certificates
268268

269269
ios:testflight:
270270
desc: "Build and upload to TestFlight"
@@ -281,12 +281,12 @@ tasks:
281281
- "{{.TAURI_DIR}}/gen/apple/build/**/*.ipa"
282282
method: checksum
283283
cmds:
284-
- fastlane beta
284+
- bundle exec fastlane beta
285285

286286
ios:release:
287287
desc: "Build and upload to App Store"
288288
cmds:
289-
- fastlane release
289+
- bundle exec fastlane release
290290

291291
test:
292292
desc: "Run Rust tests"

0 commit comments

Comments
 (0)