Merge pull request #768 from marcinmajsc/hide-url

Update buildapp.yml
This commit is contained in:
aric3435 (INACTIVE) 2024-10-15 15:48:51 -05:00 committed by GitHub
commit 421b5945f8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -115,10 +115,16 @@ jobs:
env:
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
id: prepare_youtube
run: |
wget "$YOUTUBE_URL" --no-verbose -O main/YouTube.ipa
wget "$YOUTUBE_URL" --quiet --no-verbose -O main/YouTube.ipa
cd ${{ github.workspace }}/main
mv YouTube.ipa YouTube.zip
unzip -q YouTube.zip
@ -129,7 +135,7 @@ jobs:
env:
THEOS: ${{ github.workspace }}/theos
YOUTUBE_URL: ${{ inputs.decrypted_youtube_url }}
YOUTUBE_URL: ${{ env.URL_YT }}
- name: Fix compiling & Build Package
id: build_package