From 163a1ee7723e800eff59ca623277caa0edb14fc5 Mon Sep 17 00:00:00 2001 From: level3tjg Date: Tue, 2 Apr 2024 07:45:15 -0400 Subject: [PATCH] echo not cat --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1d03105..122d42f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,7 +9,7 @@ on: default: false type: boolean ipa_url: - description: "Direct URL to Reddit IPA file" + description: "Direct URL to Decrypted IPA file" type: string required: false @@ -61,8 +61,8 @@ jobs: id: ipa_info run: | info=$(unzip -p "${{ github.workspace }}/App.ipa" Payload/*.app/Info.plist) - echo "bundle-id=$(cat $info | xmlstarlet sel -t -v "/plist/dict/key[text()=\"CFBundleIdentifier\"]/following-sibling::*[1]/text()")" >> $GITHUB_OUTPUT - echo "version=$(cat $info | xmlstarlet sel -t -v "/plist/dict/key[text()=\"CFBundleShortVersionString\"]/following-sibling::*[1]/text()")" >> $GITHUB_OUTPUT + echo "bundle-id=$(echo $info | xmlstarlet sel -t -v "/plist/dict/key[text()=\"CFBundleIdentifier\"]/following-sibling::*[1]/text()")" >> $GITHUB_OUTPUT + echo "version=$(echo $info | xmlstarlet sel -t -v "/plist/dict/key[text()=\"CFBundleShortVersionString\"]/following-sibling::*[1]/text()")" >> $GITHUB_OUTPUT - name: Setup theos uses: level3tjg/theos-action@main