chore: this is cleaner #4
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 and upload MuffinStore | |
| on: | |
| push: | |
| branches: | |
| - main | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: macos-15 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Setup theos | |
| uses: Randomblock1/theos-action@v1 | |
| - name: Switch Xcode version | |
| run: | | |
| sudo xcode-select -s /Applications/Xcode_16.2.0.app/Contents/Developer | |
| - name: Build and Package MuffinStore | |
| run: | | |
| cd $GITHUB_WORKSPACE | |
| FINALPACKAGE=1 gmake clean package | |
| mkdir -p ./output | |
| mv ./packages/*.ipa ./output/MuffinStore-$(git rev-parse --short HEAD).ipa | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: MuffinStore IPA | |
| path: ./output/*.ipa |