native macOS codings agent orchestrator
6
fork

Configure Feed

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

Harden release workflow xcodebuild pipes

khoi 20f05561 2be0e54f

+2
+2
.github/workflows/release.yml
··· 58 58 echo "DEVELOPER_ID_IDENTITY_SHA=$DEVELOPER_ID_IDENTITY_SHA" >> "$GITHUB_ENV" 59 59 - run: make build-ghostty-xcframework 60 60 - run: | 61 + set -o pipefail 61 62 xcodebuild -project supacode.xcodeproj -scheme supacode -configuration Release -archivePath build/supacode.xcarchive archive CODE_SIGN_STYLE=Manual DEVELOPMENT_TEAM="$APPLE_TEAM_ID" CODE_SIGN_IDENTITY="$DEVELOPER_ID_IDENTITY_SHA" OTHER_CODE_SIGN_FLAGS="--timestamp" 2>&1 | mise exec -- xcsift -qw 62 63 - run: | 63 64 cat > build/ExportOptions.plist <<EOF ··· 76 77 </dict> 77 78 </plist> 78 79 EOF 80 + set -o pipefail 79 81 xcodebuild -exportArchive -archivePath build/supacode.xcarchive -exportPath build/export -exportOptionsPlist build/ExportOptions.plist 2>&1 | mise exec -- xcsift -qw 80 82 - name: Re-sign Sparkle framework 81 83 run: |