Permalink
Please sign in to comment.
Showing
with
40 additions
and 0 deletions.
- +1 −0 .gitignore
- +22 −0 build
- +10 −0 export-options.plist
- +7 −0 readme.md
| @@ -0,0 +1,22 @@ | ||
| +#!/bin/bash | ||
| + | ||
| +NAME='Touch Bar Simulator' | ||
| + | ||
| + | ||
| +rm -r Release 2>/dev/null | ||
| + | ||
| +xcodebuild archive \ | ||
| + -scheme "$NAME" \ | ||
| + -archivePath Release/App.xcarchive | ||
| + | ||
| +xcodebuild \ | ||
| + -exportArchive \ | ||
| + -archivePath Release/App.xcarchive \ | ||
| + -exportOptionsPlist export-options.plist \ | ||
| + -exportPath Release | ||
| + | ||
| +cd Release | ||
| +rm -r App.xcarchive | ||
| + | ||
| +# Prerequisite: npm i -g create-dmg | ||
| +create-dmg "${NAME}.app" |
| @@ -0,0 +1,10 @@ | ||
| +<?xml version="1.0" encoding="UTF-8"?> | ||
| +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
| +<plist version="1.0"> | ||
| +<dict> | ||
| + <key>teamID</key> | ||
| + <string>YG56YK5RN5</string> | ||
| + <key>method</key> | ||
| + <string>developer-id</string> | ||
| +</dict> | ||
| +</plist> |
0 comments on commit
cf4b786