forked from dayanch96/YTLite
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
19 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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/[email protected] | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,21 +75,21 @@ 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 | ||
- name: Validate Tweak URL | ||
run: | | ||
curl -r 0-1023 -o debsample.part "${{ inputs.tweak_url }}" > /dev/null 2>&1 | ||
file_type=$(file --mime-type -b debsample.part) | ||
curl -L -r 0-1023 -o sample.part "${{ inputs.tweak_url }}" > /dev/null 2>&1 | ||
file_type=$(file --mime-type -b sample.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." | ||
echo "::error::Validation failed: The file is not a valid DEB file. Detected type: $file_type." | ||
exit 1 | ||
fi | ||
|
@@ -282,7 +282,10 @@ jobs: | |
- name: Upload to GitHub Releases | ||
uses: softprops/[email protected] | ||
with: | ||
tag_name: v${{ github.run_number }} | ||
name: YouTubePlus Beta (${{ github.run_number }}) | ||
files: YouTubePlus_Beta.ipa | ||
draft: true | ||
draft: true | ||
|
||
- name: Output Release URL | ||
run: | | ||
echo "::notice::Release available at: https://github.com/${{ github.repository }}/releases" |