← Back to notebook index

Notebook Topic

Devops Ci Cd

English topic guide inspired by the original iOS Developer Notebook, expanded for both iOS and Android teams.

What this topic covers

Execution checklist

iOS implementation notes

Android implementation notes

Code examples

Swift

# fastlane/Fastfile
lane :beta do
  build_app(scheme: "App")
  upload_to_testflight(skip_waiting_for_build_processing: true)
end

Kotlin

# .github/workflows/android.yml
- name: Build release
  run: ./gradlew assembleRelease
- name: Run tests
  run: ./gradlew test lint

Reference links

Related topics