diff --git a/.github/workflows/ytp_tweaks.yml b/.github/workflows/ytp_tweaks.yml new file mode 100644 index 0000000..398a4f1 --- /dev/null +++ b/.github/workflows/ytp_tweaks.yml @@ -0,0 +1,155 @@ +name: YouTube Plus + YouPiP, YTUHD and RYD + +on: + workflow_dispatch: + inputs: + ipa_url: + description: "The direct URL to the decrypted IPA file" + default: "" + required: true + type: string + + tweak_version: + description: "The version of the tweak to use. Enter the version manually from dayanch96/YTLite/releases or leave default" + default: "5.0.2" + required: true + type: string + +concurrency: + group: ${{ github.workflow }}-${{ github.ref }} + cancel-in-progress: true + +jobs: + build: + name: + runs-on: macos-12 + permissions: + contents: write + + steps: + - name: Checkout Main + uses: actions/checkout@v4.1.1 + with: + path: main + submodules: recursive + + - name: Install Dependencies + run: brew install make + + - name: Set PATH environment variable + run: echo "$(brew --prefix make)/libexec/gnubin" >> $GITHUB_PATH + + - name: Cache Theos + id: theos + uses: actions/cache@v4.0.1 + env: + cache-name: theos_cache + with: + path: theos/ + key: ${{ env.cache-name }} + restore-keys: ${{ env.cache-name }} + + - name: Setup Theos + if: steps.theos.outputs.cache-hit != 'true' + uses: actions/checkout@v4.1.7 + with: + repository: theos/theos + ref: 3da31488281ecf4394d10302d2629607f4a1aa07 + path: ${{ github.workspace }}/theos + submodules: recursive + + - name: Download iOS SDK + if: steps.theos.outputs.cache-hit != 'true' + run: | + git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/theos/sdks/ + cd sdks + git sparse-checkout set --no-cone iPhoneOS13.7.sdk + git checkout + mv *.sdk $THEOS/sdks + env: + THEOS: ${{ github.workspace }}/theos + + - name: Install Pyzule + run: bash -c "$(curl https://raw.githubusercontent.com/asdfzxcvbn/pyzule/main/install-pyzule.sh)" + + - name: Download YouTube + id: download_youtube + run: wget "${{ inputs.ipa_url }}" --no-verbose -O ${{ github.workspace }}/youtube.ipa + + - name: Download YouTube Plus + id: download_ytp + run: | + deb_url="https://github.com/dayanch96/YTLite/releases/download/v${{ inputs.tweak_version }}/com.dvntm.ytlite_${{ inputs.tweak_version }}_iphoneos-arm.deb" + wget "$deb_url" --no-verbose -O ${{ github.workspace }}/ytplus.deb + + - name: Clone Open in YouTube (Safari extension) + run: | + git clone --quiet -n --depth=1 --filter=tree:0 https://github.com/CokePokes/YoutubeExtensions/ + cd YoutubeExtensions + git sparse-checkout set --no-cone OpenYoutubeSafariExtension.appex + git checkout + mv *.appex ${{ github.workspace }} + + - name: Clone YouTubeHeader + run: | + if [ -d "$THEOS/include/YouTubeHeader" ]; then + echo "YouTubeHeader exists. Pulling latest changes..." + cd $THEOS/include/YouTubeHeader + git pull + else + echo "YouTubeHeader does not exist. Cloning repository..." + cd $THEOS/include + git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git + fi + env: + THEOS: ${{ github.workspace }}/theos + + - name: Clone YouPiP + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/PoomSmart/YouPiP.git + + - name: Clone YTUHD + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/PoomSmart/YTUHD.git + + - name: Clone Return-YouTube-Dislikes + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git + + - name: Build YouPiP + run: | + cd ${{ github.workspace }}/YouPiP + make clean package DEBUG=0 FINALPACKAGE=1 + mv packages/*.deb ${{ github.workspace }}/youpip.deb + env: + THEOS: ${{ github.workspace }}/theos + + - name: Build YTUHD + run: | + cd ${{ github.workspace }}/YTUHD + make clean package DEBUG=0 FINALPACKAGE=1 + mv packages/*.deb ${{ github.workspace }}/ytuhd.deb + env: + THEOS: ${{ github.workspace }}/theos + + - name: Build Return-YouTube-Dislikes + run: | + cd ${{ github.workspace }}/Return-YouTube-Dislikes + make clean package DEBUG=0 FINALPACKAGE=1 + mv packages/*.deb ${{ github.workspace }}/ryd.deb + env: + THEOS: ${{ github.workspace }}/theos + + - name: Inject tweaks into IPA + run: pyzule -i ${{ github.workspace }}/youtube.ipa -o ${{ github.workspace }}/YouTubePlus_${{ inputs.tweak_version }}_Tweaks.ipa -w -f ${{ github.workspace }}/ytplus.deb ${{ github.workspace }}/OpenYoutubeSafariExtension.appex ${{ github.workspace }}/youpip.deb ${{ github.workspace }}/ytuhd.deb ${{ github.workspace }}/ryd.deb + + - name: Upload to GitHub Releases + uses: softprops/action-gh-release@v2.0.1 + with: + tag_name: v${{ github.run_number }} + name: YouTubePlus v${{ inputs.tweak_version }} + Tweaks (${{ github.run_number }}) + files: YouTubePlus_${{ inputs.tweak_version }}_Tweaks.ipa + draft: true