fix: correct mailmap format #14
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Build and test GitMac | |
| name: Build | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Select Xcode | |
| run: sudo xcode-select -s /Applications/Xcode.app/Contents/Developer | |
| - name: Setup GhosttyKit Framework | |
| run: | | |
| chmod +x scripts/setup-ghostty.sh | |
| ./scripts/setup-ghostty.sh | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build | |
| run: | | |
| xcodebuild -project GitMac.xcodeproj \ | |
| -scheme GitMac \ | |
| -destination 'platform=macOS' \ | |
| -configuration Debug \ | |
| clean build \ | |
| | grep -E "error:|warning:|BUILD SUCCEEDED|BUILD FAILED" || true | |
| # Verificar que el build fue exitoso | |
| if [ ${PIPESTATUS[0]} -ne 0 ]; then | |
| echo "❌ Build failed" | |
| exit 1 | |
| fi | |
| echo "✅ Build succeeded" |