From 9b3a7c24747a6918898cf5982230df61b5abf232 Mon Sep 17 00:00:00 2001 From: Mukul Kedia Date: Tue, 2 Apr 2024 13:13:40 -0400 Subject: [PATCH] Add option to clone specific ref of repo, ex to update to latest release instead of nightly changes that may be broken --- .github/workflows/buildapp.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/buildapp.yml b/.github/workflows/buildapp.yml index e5cc603..24c8a4e 100644 --- a/.github/workflows/buildapp.yml +++ b/.github/workflows/buildapp.yml @@ -16,6 +16,11 @@ on: default: "3.0.3" required: true type: string + uyouenhanced_version: + description: "The version of uYouEnhanced (Commit ID)" + default: "main" + required: true + type: string decrypted_youtube_url: description: "The direct URL to the decrypted YouTube ipa" default: "" @@ -58,6 +63,7 @@ jobs: uses: actions/checkout@v4.1.1 with: path: main + ref: ${{ inputs.uyouenhanced_version }} submodules: recursive - name: Install Dependencies