Includes application/zip check

This commit is contained in:
Dan
2024-12-09 05:50:00 +03:00
parent 00bb39a7e4
commit b732529d86
2 changed files with 19 additions and 13 deletions
+8 -5
View File
@@ -75,11 +75,11 @@ jobs:
- name: Validate IPA URL
run: |
curl -r 0-1023 -o sample.part "${{ inputs.ipa_url }}" > /dev/null 2>&1
curl -L -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."
if [[ "$file_type" != "application/x-ios-app" && "$file_type" != "application/zip" ]]; then
echo "::error::Validation failed: The file is not a valid IPA file. Detected type: $file_type."
exit 1
fi
@@ -274,7 +274,10 @@ jobs:
- name: Upload to GitHub Releases
uses: softprops/action-gh-release@v2.0.1
with:
tag_name: v${{ github.run_number }}
name: YouTubePlus v${{ inputs.tweak_version }} (${{ github.run_number }})
files: YouTubePlus_${{ inputs.tweak_version }}.ipa
draft: true
draft: true
- name: Output Release URL
run: |
echo "::notice::Release available at: https://github.com/${{ github.repository }}/releases"