mirror of
https://github.com/faroukbmiled/RyukGram.git
synced 2026-06-06 23:43:54 +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:
@@ -3,7 +3,7 @@
|
||||
# https://github.com/ISnackable/YTCubePlus/blob/main/.github/workflows/Build.yml
|
||||
# https://github.com/BandarHL/BHTwitter/actions/workflows/build.yml
|
||||
|
||||
name: Build and Package SCInsta
|
||||
name: Build and Package RyukGram
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
@@ -18,13 +18,13 @@ on:
|
||||
default: true
|
||||
required: false
|
||||
type: boolean
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build:
|
||||
name: Build SCInsta
|
||||
name: Build RyukGram
|
||||
runs-on: macos-latest
|
||||
permissions:
|
||||
contents: write
|
||||
@@ -40,7 +40,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
|
||||
@@ -49,7 +49,7 @@ jobs:
|
||||
ref: master
|
||||
path: ${{ github.workspace }}/theos
|
||||
submodules: recursive
|
||||
|
||||
|
||||
- name: SDK Caching
|
||||
id: SDK
|
||||
uses: actions/cache@v4
|
||||
@@ -74,28 +74,24 @@ jobs:
|
||||
- name: Prepare Instagram IPA
|
||||
run: |
|
||||
cd main
|
||||
|
||||
mkdir -p packages
|
||||
wget "$Instagram_URL" --no-verbose -O packages/com.burbn.instagram.ipa
|
||||
|
||||
ls -la packages
|
||||
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
Instagram_URL: ${{ inputs.decrypted_instagram_url }}
|
||||
|
||||
- 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 sideloading (as IPA)
|
||||
- name: Build RyukGram tweak for sideloading (as IPA)
|
||||
run: |
|
||||
pip install --force-reinstall https://github.com/asdfzxcvbn/pyzule-rw/archive/main.zip
|
||||
|
||||
|
||||
cd main
|
||||
curl -Lo ipapatch https://github.com/asdfzxcvbn/ipapatch/releases/download/v2.1.3/ipapatch.macos-arm64
|
||||
chmod +x ipapatch
|
||||
@@ -104,33 +100,32 @@ jobs:
|
||||
|
||||
./build.sh sideload
|
||||
ls -la packages
|
||||
|
||||
env:
|
||||
THEOS: ${{ github.workspace }}/theos
|
||||
|
||||
- name: Rename IPA to include version info
|
||||
run: |
|
||||
cd main/packages
|
||||
mv "$(ls -t | head -n1)" "SCInsta_sideloaded_v${SCINSTA_VERSION}.ipa"
|
||||
mv "$(ls -t | head -n1)" "RyukGram_sideloaded_v${VERSION}.ipa"
|
||||
|
||||
- name: Pass package name to upload action
|
||||
id: package_name
|
||||
run: |
|
||||
echo "package=$(ls -t main/packages | head -n1)" >> "$GITHUB_OUTPUT"
|
||||
echo "package=$(ls -t main/packages | head -n1)" >> "$GITHUB_OUTPUT"
|
||||
|
||||
- name: Upload Artifact
|
||||
if: ${{ inputs.upload_artifact }}
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: SCInsta_sideloaded_v${{ steps.scinsta_version.outputs.version }}
|
||||
name: RyukGram_sideloaded_v${{ steps.version.outputs.version }}
|
||||
path: ${{ github.workspace }}/main/packages/${{ steps.package_name.outputs.package }}
|
||||
if-no-files-found: error
|
||||
|
||||
- name: Create Release
|
||||
uses: softprops/action-gh-release@v2.0.6
|
||||
with:
|
||||
name: SCInsta_sideloaded_v${{ steps.scinsta_version.outputs.version }}
|
||||
files: ${{ github.workspace }}/main/packages/SCInsta_sideloaded_v*.ipa
|
||||
name: RyukGram_sideloaded_v${{ steps.version.outputs.version }}
|
||||
files: ${{ github.workspace }}/main/packages/RyukGram_sideloaded_v*.ipa
|
||||
draft: true
|
||||
|
||||
- name: Output Release URL
|
||||
|
||||
@@ -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