ui: disable next month button for future months #91
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
| name: "Build & Analyze" | |
| on: | |
| pull_request: | |
| branches: [main] | |
| push: | |
| branches: [main, rebuild] | |
| jobs: | |
| build_app: | |
| runs-on: macos-14 | |
| steps: | |
| - name: List Xcode installations | |
| run: sudo ls -1 /Applications | grep "Xcode" | |
| - name: Select Xcode 16 | |
| run: sudo xcode-select -s /Applications/Xcode_16.1.0.app/Contents/Developer | |
| - name: Check Xcode version | |
| run: /usr/bin/xcodebuild -version | |
| - name: Checkout source files | |
| uses: actions/checkout@v4 | |
| - name: Build unsigned archive | |
| env: | |
| INFINITIME_PAT: ${{ secrets.INFINITIME_PAT }} | |
| run: | | |
| xcodebuild archive \ | |
| -project InfiniLink.xcodeproj \ | |
| -scheme InfiniLink \ | |
| -archivePath unsigned.xcarchive \ | |
| -configuration Release \ | |
| -sdk iphoneos \ | |
| -destination generic/platform=iOS \ | |
| CODE_SIGN_IDENTITY="" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO | |
| - name: Make IPA | |
| run: | | |
| find . | |
| mv ./unsigned.xcarchive/Products/Applications ./Payload | |
| zip -r infinilink.zip ./Payload | |
| mv infinilink.zip infinilink.ipa | |
| find . | |
| - name: Upload build artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: infinilink.ipa | |
| path: infinilink.ipa |