native macOS codings agent orchestrator
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pipe xcodebuild output through xcsift for cleaner CI logs

khoi cde0ef5c ed974c6b

+2 -2
+2 -2
.github/workflows/release.yml
··· 47 47 security list-keychains -s build.keychain 48 48 - run: make build-ghostty-xcframework 49 49 - run: | 50 - xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Release -archivePath build/supacode.xcarchive archive CODE_SIGN_IDENTITY="$DEVELOPER_ID_IDENTITY" OTHER_CODE_SIGN_FLAGS="--timestamp" 50 + xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Release -archivePath build/supacode.xcarchive archive CODE_SIGN_IDENTITY="$DEVELOPER_ID_IDENTITY" OTHER_CODE_SIGN_FLAGS="--timestamp" 2>&1 | mise exec -- xcsift -qw 51 51 - run: | 52 52 cat > build/ExportOptions.plist <<EOF 53 53 <?xml version="1.0" encoding="UTF-8"?> ··· 65 65 </dict> 66 66 </plist> 67 67 EOF 68 - xcodebuild -exportArchive -archivePath build/supacode.xcarchive -exportPath build/export -exportOptionsPlist build/ExportOptions.plist 68 + xcodebuild -exportArchive -archivePath build/supacode.xcarchive -exportPath build/export -exportOptionsPlist build/ExportOptions.plist 2>&1 | mise exec -- xcsift -qw 69 69 - name: Notarize and staple 70 70 run: | 71 71 APP_PATH="$(find build/export -name "supacode.app" -maxdepth 3 -print -quit)"