mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-07-16 09:27:19 +02:00
- Renamed project from SCInsta to RyukGram across all user-facing text,
settings UI, build scripts, workflows, control file, and Makefile
- Added built-in sideload compatibility patch:
keychain access group discovery, SecItem rebinding via fishhook,
NSFileManager app group fallback, Cloud Kit entitlement patches
- Added fishhook library (modules/fishhook/) for C function rebinding
- Updated README with new features, repo links, and credits
- Updated GitHub Actions workflows for RyukGram naming
- Plist renamed from SCInsta.plist to RyukGram.plist
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
name: Build SCInsta tweak for Rootless
|
||||
name: Build RyukGram tweak for Rootless
|
||||
|
||||
on:
|
||||
push:
|
||||
@@ -6,13 +6,13 @@ on:
|
||||
- 'main'
|
||||
- 'dev'
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
name: Build SCInsta Rootless
|
||||
name: Build RyukGram Rootless
|
||||
runs-on: macos-latest
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -27,7 +27,7 @@ jobs:
|
||||
run: brew install ldid dpkg make
|
||||
|
||||
- name: Set PATH environment variable
|
||||
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
||||
run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH
|
||||
|
||||
- name: Setup Theos
|
||||
uses: actions/checkout@v4
|
||||
@@ -36,7 +36,7 @@ jobs:
|
||||
ref: master
|
||||
path: ${{ github.workspace }}/theos
|
||||
submodules: recursive
|
||||
|
||||
|
||||
- name: SDK Caching
|
||||
id: SDK
|
||||
uses: actions/cache@v4
|
||||
@@ -58,29 +58,26 @@ jobs:
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Get SCInsta Version
|
||||
id: scinsta_version
|
||||
- name: Get Version
|
||||
id: version
|
||||
run: |
|
||||
SCINSTA_VERSION=$(awk '/Version:/ {print $2}' main/control)
|
||||
VERSION=$(awk '/Version:/ {print $2}' main/control)
|
||||
echo "VERSION=${VERSION}" >> "$GITHUB_ENV"
|
||||
echo "version=${VERSION}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
echo "SCINSTA_VERSION=${SCINSTA_VERSION}" >> "$GITHUB_ENV"
|
||||
echo "version=${SCINSTA_VERSION}" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Build SCInsta tweak for Rootless
|
||||
run: |
|
||||
- name: Build RyukGram tweak for Rootless
|
||||
run: |
|
||||
cd main
|
||||
ls -la
|
||||
|
||||
./build.sh rootless
|
||||
ls -la packages
|
||||
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Rename deb to include version info
|
||||
run: |
|
||||
cd main/packages
|
||||
mv "$(ls -t | head -n1)" "com.socuul.scinsta_${SCINSTA_VERSION}+debug-rootless.deb"
|
||||
mv "$(ls -t | head -n1)" "com.faroukbmiled.ryukgram_${VERSION}+debug-rootless.deb"
|
||||
|
||||
- name: Pass package name to upload action
|
||||
id: package_name
|
||||
|
||||
Reference in New Issue
Block a user