mirror of
https://github.com/Nezumi-2711/revanced-apk-build.git
synced 2026-09-22 13:38:52 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c2fe93675e | ||
|
|
aee01f1ca5 | ||
|
|
679631315e | ||
|
|
a2ca664121 | ||
|
|
94c8ce77a9 | ||
|
|
aece463380 | ||
|
|
6846988fbe |
@@ -114,7 +114,7 @@ jobs:
|
||||
run: |
|
||||
cd build || { echo "build folder not found"; exit 1; }
|
||||
|
||||
TG_CHAT="@rvc_magisk"
|
||||
TG_CHAT="-1002417137882"
|
||||
NL=$'\n'
|
||||
APKS=""
|
||||
MODULES=""
|
||||
@@ -145,3 +145,64 @@ jobs:
|
||||
MSG=${MSG:0:9450}
|
||||
POST="https://api.telegram.org/bot${TG_TOKEN}/sendMessage"
|
||||
curl -X POST --data-urlencode "parse_mode=Markdown" --data-urlencode "disable_web_page_preview=true" --data-urlencode "text=${MSG}" --data-urlencode "chat_id=${TG_CHAT}" "$POST"
|
||||
|
||||
- name: Report to Discord
|
||||
env:
|
||||
DISCORD_WEBHOOK_URL: ${{ secrets.DISCORD_WEBHOOK_URL }}
|
||||
if: env.DISCORD_WEBHOOK_URL != null
|
||||
run: |
|
||||
cd build || { echo "build folder not found"; exit 1; }
|
||||
|
||||
NL=$'\n'
|
||||
APKS=""
|
||||
MODULES=""
|
||||
for OUTPUT in *; do
|
||||
DL_URL="$GITHUB_SERVER_URL/$GITHUB_REPOSITORY/releases/download/${{ steps.next_ver_code.outputs.NEXT_VER_CODE }}/${OUTPUT}"
|
||||
if [[ $OUTPUT = *.apk ]]; then
|
||||
APKS+="${NL}- [${OUTPUT}](${DL_URL})"
|
||||
elif [[ $OUTPUT = *.zip ]]; then
|
||||
MODULES+="${NL}- [${OUTPUT}](${DL_URL})"
|
||||
fi
|
||||
done
|
||||
|
||||
MODULES=${MODULES#"$NL"}
|
||||
APKS=${APKS#"$NL"}
|
||||
|
||||
BODY="$(sed 's/^\* \*\*/- \*\*/g; s/^\* `/- \*\*/g; s/`/\*/g; s/^\* /\-/g; s/\*\*/\*/g; s/###//g; s/^- /- /g; /^==/d;' ../build.md)"
|
||||
MSG="**New build is ready!**
|
||||
|
||||
${BODY}
|
||||
|
||||
**Download Links:**
|
||||
**Modules:**
|
||||
${MODULES}
|
||||
|
||||
**APKs:**
|
||||
${APKS}
|
||||
"
|
||||
|
||||
# Function to split messages by line and send them
|
||||
send_discord_message() {
|
||||
local message="$1"
|
||||
local buffer=""
|
||||
while IFS= read -r line || [ -n "$line" ]; do
|
||||
# Check if adding the current line exceeds 2000 characters
|
||||
if [ ${#buffer} -ge 2000 ]; then
|
||||
# Send the current buffer and reset it
|
||||
curl -X POST -H "Content-Type: application/json" \
|
||||
-d "$(jq -n --arg content "$buffer" '{content: $content}')" \
|
||||
"$DISCORD_WEBHOOK_URL"
|
||||
buffer=""
|
||||
fi
|
||||
buffer+="$line\n"
|
||||
done <<< "$message"
|
||||
|
||||
# Send any remaining content in the buffer
|
||||
if [ -n "$buffer" ]; then
|
||||
curl -X POST -H "Content-Type: application/json" \
|
||||
-d "$(jq -n --arg content "$buffer" '{content: $content}')" \
|
||||
"$DISCORD_WEBHOOK_URL"
|
||||
fi
|
||||
}
|
||||
|
||||
send_discord_message "$MSG"
|
||||
|
||||
@@ -46,5 +46,5 @@ jobs:
|
||||
permissions: write-all
|
||||
needs: check
|
||||
uses: ./.github/workflows/build.yml
|
||||
if: ${{ needs.check.outputs.SHOULD_BUILD == 1 }}
|
||||
if: ${{ needs.check.outputs.SHOULD_BUILD == 0 }}
|
||||
secrets: inherit
|
||||
|
||||
+3
-1
@@ -1,4 +1,4 @@
|
||||
enable-magisk-update = true # set this to false if you do not want to receive updates for the module in magisk app
|
||||
enable-magisk-update = false # set this to false if you do not want to receive updates for the module in magisk app
|
||||
parallel-jobs = 1
|
||||
|
||||
# add 'enabled = false' for not patching a specific app or remove it from the config
|
||||
@@ -46,6 +46,8 @@ cli-source = "inotia00/revanced-cli"
|
||||
rv-brand = "ReVanced Extended"
|
||||
build-mode = "both"
|
||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube"
|
||||
included-patches = "'Custom header for YouTube'"
|
||||
excluded-patches = "'Custom branding icon for YouTube' 'Custom branding name for YouTube'"
|
||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.youtube"
|
||||
|
||||
[Reddit-Extended]
|
||||
|
||||
Reference in New Issue
Block a user