Checks sample content type

This commit is contained in:
Dan
2024-12-09 01:06:59 +03:00
parent 8cf717fab6
commit 00bb39a7e4
2 changed files with 15 additions and 12 deletions
+5 -4
View File
@@ -75,10 +75,11 @@ jobs:
- name: Validate IPA URL
run: |
response=$(curl -sI "${{ inputs.ipa_url }}")
content_type=$(echo "$response" | grep -i "Content-Type" | awk '{print $2}' | tr -d '\r')
if [[ "$content_type" != "application/octet-stream" ]]; then
echo "Direct link to the IPA file required. Entered link is not a direct download or does not point to an IPA file."
curl -r 0-1023 -o sample.part "${{ inputs.ipa_url }}" > /dev/null 2>&1
file_type=$(file --mime-type -b sample.part)
if [[ "$file_type" != "application/x-ios-app" ]]; then
echo "ERROR: The file is not a valid IPA file. Please ensure that you have provided a direct link to the file, not a web page."
exit 1
fi
+10 -8
View File
@@ -75,19 +75,21 @@ jobs:
- name: Validate IPA URL
run: |
response=$(curl -sI "${{ inputs.ipa_url }}")
content_type=$(echo "$response" | grep -i "Content-Type" | awk '{print $2}' | tr -d '\r')
if [[ "$content_type" != "application/octet-stream" ]]; then
echo "Direct link to the IPA file required. Entered link is not a direct download or does not point to an IPA file."
curl -r 0-1023 -o sample.part "${{ inputs.ipa_url }}" > /dev/null 2>&1
file_type=$(file --mime-type -b sample.part)
if [[ "$file_type" != "application/x-ios-app" ]]; then
echo "ERROR: The file is not a valid IPA file. Please ensure that you have provided a direct link to the file, not a web page."
exit 1
fi
- name: Validate Tweak URL
run: |
response=$(curl -sI "${{ inputs.tweak_url }}")
content_type=$(echo "$response" | grep -i "Content-Type" | awk '{print $2}' | tr -d '\r')
if [[ "$content_type" != "application/octet-stream" ]]; then
echo "Direct link to the tweak file required. Entered link is not a direct download or does not point to a DEB file."
curl -r 0-1023 -o debsample.part "${{ inputs.tweak_url }}" > /dev/null 2>&1
file_type=$(file --mime-type -b debsample.part)
if [[ "$file_type" != "application/vnd.debian.binary-package" ]]; then
echo "ERROR: The file is not a valid DEB file. Please ensure that you have provided a direct link to the file, not a web page."
exit 1
fi