-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeSignDevID.yml
More file actions
26 lines (26 loc) · 888 Bytes
/
Copy pathCodeSignDevID.yml
File metadata and controls
26 lines (26 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# CodeSignDevID target template.
#
# Per-configuration signing identity: an Apple Development cert for Debug, and a
# Developer ID Application cert (for distribution outside the App Store) for
# Release. Reference it with:
#
# targets:
# MyApp:
# templates: [CodeSignDevID]
#
# Note: "Developer ID Application" requires manual signing and a team. If you are
# not also composing a signing-style template, add CODE_SIGN_STYLE: Manual and
# DEVELOPMENT_TEAM: ${DEVELOPMENT_TEAM} here (or via CodeSignAuto for Debug).
#
# Requires `include`-ing this file from the consuming project.yml.
targetTemplates:
CodeSignDevID:
settings:
base:
CODE_SIGN_STYLE: Manual
DEVELOPMENT_TEAM: ${DEVELOPMENT_TEAM}
configs:
Debug:
CODE_SIGN_IDENTITY: "Apple Development"
Release:
CODE_SIGN_IDENTITY: "Developer ID Application"