From c59e0fa9722c9ab9a5054337b250af793dc2222a Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Thu, 13 Nov 2025 11:39:07 +0700 Subject: [PATCH 1/6] Change YTUHD repo --- .github/workflows/main.yml | 12 +++++------- .github/workflows/ytp_beta.yml | 8 +++----- 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0c907c6..5df5727 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -196,18 +196,16 @@ jobs: - name: Clone YTUHD if: ${{ inputs.enable_ytuhd }} - uses: actions/checkout@v4.1.7 - with: - repository: PoomSmart/YTUHD - ref: 0f59b38817d554ab692a0053456319847a6ab1a1 - path: ${{ github.workspace }}/YTUHD - + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/Tonwalter888/YTUHD.git + - name: Clone Return-YouTube-Dislikes if: ${{ inputs.enable_ryd }} run: | cd ${{ github.workspace }} git clone --quiet --depth=1 https://github.com/PoomSmart/Return-YouTube-Dislikes.git - + - name: Clone YouGroupSettings if: ${{ inputs.enable_demc }} run: | diff --git a/.github/workflows/ytp_beta.yml b/.github/workflows/ytp_beta.yml index 86ac574..723c729 100644 --- a/.github/workflows/ytp_beta.yml +++ b/.github/workflows/ytp_beta.yml @@ -201,11 +201,9 @@ jobs: - name: Clone YTUHD if: ${{ inputs.enable_ytuhd }} - uses: actions/checkout@v4.1.7 - with: - repository: PoomSmart/YTUHD - ref: 0f59b38817d554ab692a0053456319847a6ab1a1 - path: ${{ github.workspace }}/YTUHD + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/Tonwalter888/YTUHD.git - name: Clone Return-YouTube-Dislikes if: ${{ inputs.enable_ryd }} From bb04cee14906d34a935804a3481cfd8c723f698f Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Thu, 13 Nov 2025 11:46:47 +0700 Subject: [PATCH 2/6] Forgot to change --- .github/workflows/cyan_ts.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/cyan_ts.yml b/.github/workflows/cyan_ts.yml index 2121479..b6a31c2 100644 --- a/.github/workflows/cyan_ts.yml +++ b/.github/workflows/cyan_ts.yml @@ -188,11 +188,9 @@ jobs: - name: Clone YTUHD if: ${{ inputs.enable_ytuhd }} - uses: actions/checkout@v4.1.7 - with: - repository: PoomSmart/YTUHD - ref: 0f59b38817d554ab692a0053456319847a6ab1a1 - path: ${{ github.workspace }}/YTUHD + run: | + cd ${{ github.workspace }} + git clone --quiet --depth=1 https://github.com/Tonwalter888/YTUHD.git - name: Clone Return-YouTube-Dislikes if: ${{ inputs.enable_ryd }} @@ -346,4 +344,4 @@ jobs: - name: Output Release URL run: | - echo "::notice::Release available at: https://github.com/${{ github.repository }}/releases" \ No newline at end of file + echo "::notice::Release available at: https://github.com/${{ github.repository }}/releases" From b7af74d69ad5e146b6901655dc7ddc6ceb4419fb Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Sat, 15 Nov 2025 12:55:47 +0700 Subject: [PATCH 3/6] Fix building error for YTUHD --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 5df5727..426f1cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -156,13 +156,13 @@ jobs: if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }} run: | if [ -d "$THEOS/include/YouTubeHeader" ]; then - echo "YouTubeHeader exists. Pulling latest changes..." - cd $THEOS/include/YouTubeHeader - git pull + echo "YouTubeHeader exists." else echo "YouTubeHeader does not exist. Cloning repository..." cd $THEOS/include git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git + cd YouTubeHeader + git checkout 854a92b fi if [ "${{ inputs.enable_demc }}" = "true" ]; then From 8c66b4b22642af8fa2075cb761cd522a4c1e4096 Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Sat, 15 Nov 2025 12:57:34 +0700 Subject: [PATCH 4/6] Fix error building for YTUHD --- .github/workflows/ytp_beta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ytp_beta.yml b/.github/workflows/ytp_beta.yml index 723c729..6629abc 100644 --- a/.github/workflows/ytp_beta.yml +++ b/.github/workflows/ytp_beta.yml @@ -161,13 +161,13 @@ jobs: if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }} run: | if [ -d "$THEOS/include/YouTubeHeader" ]; then - echo "YouTubeHeader exists. Pulling latest changes..." - cd $THEOS/include/YouTubeHeader - git pull + echo "YouTubeHeader exists." else echo "YouTubeHeader does not exist. Cloning repository..." cd $THEOS/include git clone --quiet --depth=1 https://github.com/PoomSmart/YouTubeHeader.git + cd YouTubeHeader + git checkout 854a92b fi if [ "${{ inputs.enable_demc }}" = "true" ]; then From dcf89e1c730f43014c9a2abdf341f1fc40c1df57 Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Sat, 15 Nov 2025 13:03:15 +0700 Subject: [PATCH 5/6] Revert --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 426f1cc..5df5727 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -156,13 +156,13 @@ jobs: if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }} run: | if [ -d "$THEOS/include/YouTubeHeader" ]; then - echo "YouTubeHeader exists." + 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 - cd YouTubeHeader - git checkout 854a92b fi if [ "${{ inputs.enable_demc }}" = "true" ]; then From 2258342567ee6ddf6900057a67a12a2826f6021b Mon Sep 17 00:00:00 2001 From: Tonwalter888 Date: Sat, 15 Nov 2025 13:03:42 +0700 Subject: [PATCH 6/6] Revert --- .github/workflows/ytp_beta.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ytp_beta.yml b/.github/workflows/ytp_beta.yml index 6629abc..723c729 100644 --- a/.github/workflows/ytp_beta.yml +++ b/.github/workflows/ytp_beta.yml @@ -161,13 +161,13 @@ jobs: if: ${{ inputs.enable_youpip || inputs.enable_ytuhd || inputs.enable_yq || inputs.enable_ryd || inputs.enable_demc }} run: | if [ -d "$THEOS/include/YouTubeHeader" ]; then - echo "YouTubeHeader exists." + 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 - cd YouTubeHeader - git checkout 854a92b fi if [ "${{ inputs.enable_demc }}" = "true" ]; then