Skip to content

Commit

Permalink
workflow and credit
Browse files Browse the repository at this point in the history
  • Loading branch information
m1zole committed Jan 8, 2024
1 parent 87e2474 commit 56f8ac3
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/build.yml
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
13 changes: 13 additions & 0 deletions Makefile
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ tested on arm64e 15.1 and 16.5.1
- wh1te4ever : offsets
- LinusHenze : Fugu15_Rootful KPF
- tihmstar : libgrabkernel
- xina520 : GPU_CoreSight
- wh1te4ever : GPU_CoreSight fork

## todo
- implement iosurface release_surface function

0 comments on commit 56f8ac3

Please sign in to comment.