mirror of
https://github.com/arichornlover/uYouEnhanced.git
synced 2026-05-12 01:00:38 +00:00
commit
421b5945f8
1 changed files with 8 additions and 2 deletions
10
.github/workflows/buildapp.yml
vendored
10
.github/workflows/buildapp.yml
vendored
|
|
@ -115,10 +115,16 @@ jobs:
|
||||||
env:
|
env:
|
||||||
THEOS: ${{ github.workspace }}/theos
|
THEOS: ${{ github.workspace }}/theos
|
||||||
|
|
||||||
|
- name: Hash YT ipa url
|
||||||
|
run: |
|
||||||
|
URL_YT="$(jq -r '.inputs.decrypted_youtube_url' $GITHUB_EVENT_PATH)"
|
||||||
|
echo ::add-mask::$URL_YT
|
||||||
|
echo URL_YT=$URL_YT >> $GITHUB_ENV
|
||||||
|
|
||||||
- name: Prepare YouTube iPA
|
- name: Prepare YouTube iPA
|
||||||
id: prepare_youtube
|
id: prepare_youtube
|
||||||
run: |
|
run: |
|
||||||
wget "$YOUTUBE_URL" --no-verbose -O main/YouTube.ipa
|
wget "$YOUTUBE_URL" --quiet --no-verbose -O main/YouTube.ipa
|
||||||
cd ${{ github.workspace }}/main
|
cd ${{ github.workspace }}/main
|
||||||
mv YouTube.ipa YouTube.zip
|
mv YouTube.ipa YouTube.zip
|
||||||
unzip -q YouTube.zip
|
unzip -q YouTube.zip
|
||||||
|
|
@ -129,7 +135,7 @@ jobs:
|
||||||
|
|
||||||
env:
|
env:
|
||||||
THEOS: ${{ github.workspace }}/theos
|
THEOS: ${{ github.workspace }}/theos
|
||||||
YOUTUBE_URL: ${{ inputs.decrypted_youtube_url }}
|
YOUTUBE_URL: ${{ env.URL_YT }}
|
||||||
|
|
||||||
- name: Fix compiling & Build Package
|
- name: Fix compiling & Build Package
|
||||||
id: build_package
|
id: build_package
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue