CI: Add zsh-based build framework files for macOS

This commit is contained in:
PatTheMav
2023-02-02 22:20:03 +01:00
parent c33fa8bfa2
commit 1cfa06a2aa
31 changed files with 554 additions and 100 deletions

View File

@@ -0,0 +1,9 @@
autoload -Uz log_info
if (( ! ${+CODESIGN_IDENT} )) {
typeset -g CODESIGN_IDENT
log_info 'Setting up Apple Developer ID for application codesigning...'
read CODESIGN_IDENT'?Apple Developer Application ID: '
}
typeset -g CODESIGN_TEAM=$(print "${CODESIGN_IDENT}" | /usr/bin/sed -En 's/.+\((.+)\)/\1/p')