Skip to content

Commit

Permalink
Merge pull request #768 from marcinmajsc/hide-url
Browse files Browse the repository at this point in the history
Update buildapp.yml
  • Loading branch information
arichornlover authored Oct 15, 2024
2 parents 2dcbbe7 + 4d2c0d7 commit 421b594
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/buildapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 421b594

Please sign in to comment.