2023 Developer Tools
WWDC23 · 29 min · Developer Tools
Create practical workflows in Xcode Cloud
Learn how Xcode Cloud can help teams of all shapes and sizes in their development process. We’ll share different ways to configure actions to help you create simple yet powerful workflows, and show you how to extend Xcode Cloud when you integrate with additional tools.
Watch at developer.apple.com ↗Chapters
Code shown on screen · 1 snippet
Pre-build script that replaces the app icon for beta builds
# ci_pre_xcodebuild.sh
#
if [[ "$CI_XCODEBUILD_ACTION" == "archive" && "$CI_WORKFLOW" == "Beta" ]]; then
echo "Replacing app icon with beta icon"
mv BetaAppIcon.appiconset ../App/Assets.xcassets/AppIcon.appiconset
fi Resources
- Xcode Cloud Workflows and Builds
- Improving code assessment by organizing tests into test plans
- Making dependencies available to Xcode Cloud
- Configuring webhooks in Xcode Cloud
- Environment variable reference
- Writing custom build scripts
- Xcode Cloud workflow reference
- Developing a workflow strategy for Xcode Cloud
- Configuring your first Xcode Cloud workflow
Related sessions
-
22 min -
15 min -
22 min