ci: add iPhone deploy workflow + CI/CD setup docs #4

Merged
millianlmx merged 50 commits from ci/iphone-deploy-workflow into main 2026-06-27 22:49:53 +02:00
Showing only changes of commit a6ea4ca904 - Show all commits

View File

@@ -127,7 +127,9 @@ struct TabataGoComplication: Widget {
.supportedFamilies([
.accessoryCircular,
.accessoryRectangular,
#if os(watchOS)
.accessoryCorner
#endif
])
}
}
@@ -142,8 +144,10 @@ struct TabataComplicationEntryView: View {
CircularComplicationView(entry: entry)
case .accessoryRectangular:
RectangularComplicationView(entry: entry)
#if os(watchOS)
case .accessoryCorner:
CornerComplicationView(entry: entry)
#endif
default:
CircularComplicationView(entry: entry)
}