Semi-Rewrite – Major Refactor & Codebase Cleanup (#328) #699
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 Debug IPA | |
| on: | |
| push: | |
| branches: [ "main", "semi-rewrite" ] | |
| pull_request: | |
| branches: [ "main", "semi-rewrite" ] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| jobs: | |
| build_and_release: | |
| name: Build & Release IPA | |
| runs-on: macos-latest | |
| env: | |
| UPLOAD_IPA: ${{ vars.UPLOAD_IPA || 'true' }} | |
| steps: | |
| - name: 1. Fetch Source Code | |
| uses: actions/checkout@v4 | |
| - name: 2. Configure Xcode Environment | |
| uses: maxim-lobanov/setup-xcode@v1 | |
| with: | |
| xcode-version: '26.0.1' | |
| - name: 3. Compile Project Archive | |
| run: | | |
| xcodebuild clean archive \ | |
| -project StikDebug.xcodeproj \ | |
| -scheme "StikDebug" \ | |
| -configuration Debug \ | |
| -archivePath build/StikDebug.xcarchive \ | |
| -sdk iphoneos \ | |
| -destination 'generic/platform=iOS' \ | |
| ONLY_ACTIVE_ARCH=NO \ | |
| CODE_SIGN_IDENTITY="" \ | |
| CODE_SIGNING_REQUIRED=NO \ | |
| CODE_SIGNING_ALLOWED=NO \ | |
| SWIFT_OPTIMIZATION_LEVEL="-Onone" \ | |
| IPHONEOS_DEPLOYMENT_TARGET=17.4 | |
| - name: 4. Package .app into .ipa | |
| run: | | |
| cp -R build/StikDebug.xcarchive/Products/Applications/StikDebug.app . | |
| mkdir -p Payload | |
| cp -R StikDebug.app Payload/ | |
| zip -r StikDebug.ipa Payload | |
| rm -rf Payload StikDebug.app | |
| - name: 5. Store IPA as Workflow Artifact | |
| if: env.UPLOAD_IPA == 'true' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: StikDebug-Debug.ipa | |
| path: StikDebug.ipa | |
| retention-days: 90 | |
| - name: 6. Extract Version Information | |
| id: version | |
| run: | | |
| VERSION=$(sed -n 's/.*MARKETING_VERSION = \(.*\);/\1/p' StikDebug.xcodeproj/project.pbxproj | head -1 | xargs) | |
| echo "app_version=$VERSION" >> "$GITHUB_OUTPUT" | |
| - name: 7. Deploy to Nightly Release | |
| if: env.UPLOAD_IPA == 'true' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && github.ref == 'refs/heads/main' | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: Nightly | |
| name: "Nightly Build - v${{ steps.version.outputs.app_version }}" | |
| prerelease: true | |
| generate_release_notes: true | |
| target_commitish: ${{ github.sha }} | |
| files: | | |
| StikDebug.ipa | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |