forked from kok3shidoll/meow16-kfd-pub
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- swiftui | ||
paths-ignore: | ||
- '**/*.md' | ||
- 'README.md' | ||
- '.gitignore' | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: macos-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build IPA | ||
run: | | ||
make | ||
- name: Upload IPA | ||
uses: actions/upload-artifact@v3.1.0 | ||
with: | ||
name: kfd | ||
path: ${{ github.workspace }}/meow16.ipa |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
BUNDLE := com.mizole.meow16 | ||
|
||
.PHONY: all clean | ||
|
||
all: clean | ||
xcodebuild clean build CODE_SIGNING_ALLOWED=NO ONLY_ACTIVE_ARCH=NO PRODUCT_BUNDLE_IDENTIFIER="$(BUNDLE)" -sdk iphoneos -scheme kfd-meow -configuration Debug -derivedDataPath build | ||
ln -sf build/Build/Products/Debug-iphoneos Payload | ||
rm -rf Payload/kfd.app/Frameworks | ||
ldid -Sent.xml Payload/kfd-meow.app/kfd-meow | ||
zip -r9 meow16.ipa Payload/kfd-meow.app | ||
|
||
clean: | ||
rm -rf build Payload meow16.ipa |
This file contains 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