From 56b2326f94c42f450a6b395ba6a6cee00c8145e7 Mon Sep 17 00:00:00 2001 From: Dan <38832025+dayanch96@users.noreply.github.com> Date: Tue, 26 Nov 2024 04:18:58 +0300 Subject: [PATCH] add YouGroupSettings --- .github/workflows/ytp_link_tweaks.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ytp_link_tweaks.yml b/.github/workflows/ytp_link_tweaks.yml index 7ac2e85..a59875a 100644 --- a/.github/workflows/ytp_link_tweaks.yml +++ b/.github/workflows/ytp_link_tweaks.yml @@ -120,6 +120,11 @@ jobs: cd ${{ github.workspace }} git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git + - name: Clone YouGroupSettings + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/PoomSmart/YouGroupSettings.git + - name: Build YouPiP run: | cd ${{ github.workspace }}/YouPiP @@ -144,10 +149,18 @@ jobs: env: THEOS: ${{ github.workspace }}/theos + - name: Build YouGroupSettings + run: | + cd ${{ github.workspace }}/YouGroupSettings + make clean package DEBUG=0 FINALPACKAGE=1 + mv packages/*.deb ${{ github.workspace }}/ygs.deb + env: + THEOS: ${{ github.workspace }}/theos + - name: Inject tweaks into IPA run: | cyan -i youtube.ipa -o YTPlus_Tweaks.ipa \ - -uwf ytplus.deb OpenYoutubeSafariExtension.appex youpip.deb ytuhd.deb ryd.deb + -uwf ytplus.deb OpenYoutubeSafariExtension.appex youpip.deb ytuhd.deb ryd.deb ygs.deb - name: Upload to GitHub Releases uses: softprops/action-gh-release@v2.0.1