mirror of
https://github.com/Nezumi-2711/revanced-apk-build.git
synced 2026-09-22 20:02:00 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
39e551c73c | ||
|
|
b5aac3781a | ||
|
|
9ff2c72375 | ||
|
|
e65dfdaa1b | ||
|
|
b2312718f9 | ||
|
|
f1e8080202 | ||
|
|
f428ad0cfe | ||
|
|
d28118c98c | ||
|
|
edfe08657a | ||
|
|
03352030a1 | ||
|
|
c57014a391 | ||
|
|
1167a7c636 | ||
|
|
fb7222a28f | ||
|
|
8e8c8634ef | ||
|
|
7deb883720 | ||
|
|
be1c20bb87 | ||
|
|
88a00ca413 | ||
|
|
788b36f083 | ||
|
|
ae43197aa0 | ||
|
|
c2fe93675e | ||
|
|
aee01f1ca5 | ||
|
|
679631315e | ||
|
|
a2ca664121 | ||
|
|
94c8ce77a9 | ||
|
|
aece463380 | ||
|
|
6846988fbe |
@@ -114,7 +114,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
cd build || { echo "build folder not found"; exit 1; }
|
cd build || { echo "build folder not found"; exit 1; }
|
||||||
|
|
||||||
TG_CHAT="@rvc_magisk"
|
TG_CHAT="-1002417137882"
|
||||||
NL=$'\n'
|
NL=$'\n'
|
||||||
APKS=""
|
APKS=""
|
||||||
MODULES=""
|
MODULES=""
|
||||||
@@ -145,3 +145,55 @@ jobs:
|
|||||||
MSG=${MSG:0:9450}
|
MSG=${MSG:0:9450}
|
||||||
POST="https://api.telegram.org/bot${TG_TOKEN}/sendMessage"
|
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"
|
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_MSG="
|
||||||
|
**Modules:**
|
||||||
|
${MODULES}
|
||||||
|
"
|
||||||
|
|
||||||
|
APKS_MSG="
|
||||||
|
**APKs:**
|
||||||
|
${APKS}
|
||||||
|
"
|
||||||
|
|
||||||
|
curl -X POST -H "Content-Type: application/json" \
|
||||||
|
-d "$(jq -n --arg content "$MSG" '{content: $content}')" \
|
||||||
|
"$DISCORD_WEBHOOK_URL"
|
||||||
|
|
||||||
|
curl -X POST -H "Content-Type: application/json" \
|
||||||
|
-d "$(jq -n --arg content "$MODULES_MSG" '{content: $content}')" \
|
||||||
|
"$DISCORD_WEBHOOK_URL"
|
||||||
|
|
||||||
|
curl -X POST -H "Content-Type: application/json" \
|
||||||
|
-d "$(jq -n --arg content "$APKS_MSG" '{content: $content}')" \
|
||||||
|
"$DISCORD_WEBHOOK_URL"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
# ReVanced Magisk Module
|
# ReVanced Magisk Module
|
||||||
[](https://t.me/rvc_magisk)
|
[](https://t.me/rvc_magisk)
|
||||||
[](https://github.com/j-hc/revanced-magisk-module/actions/workflows/ci.yml)
|
[](https://github.com/Nez27/revanced-apk-build/actions/workflows/ci.yml)
|
||||||
|
|
||||||
Extensive ReVanced builder
|
Extensive ReVanced builder
|
||||||
|
|
||||||
|
|||||||
+34
-9
@@ -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
|
parallel-jobs = 1
|
||||||
|
|
||||||
# add 'enabled = false' for not patching a specific app or remove it from the config
|
# add 'enabled = false' for not patching a specific app or remove it from the config
|
||||||
@@ -7,7 +7,7 @@ parallel-jobs = 1
|
|||||||
# you can use rvmm-config-gen to generate a config
|
# you can use rvmm-config-gen to generate a config
|
||||||
|
|
||||||
[YouTube]
|
[YouTube]
|
||||||
build-mode = "both"
|
build-mode = "apk"
|
||||||
excluded-patches = "'Hide timestamp'"
|
excluded-patches = "'Hide timestamp'"
|
||||||
included-patches = ""
|
included-patches = ""
|
||||||
version = "auto"
|
version = "auto"
|
||||||
@@ -16,14 +16,14 @@ uptodown-dlurl = "https://youtube.en.uptodown.com/android"
|
|||||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.youtube"
|
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.youtube"
|
||||||
|
|
||||||
[Music]
|
[Music]
|
||||||
build-mode = "both"
|
build-mode = "apk"
|
||||||
arch = "both"
|
arch = "both"
|
||||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube-music"
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube-music"
|
||||||
uptodown-dlurl = "https://youtube-music.en.uptodown.com/android"
|
uptodown-dlurl = "https://youtube-music.en.uptodown.com/android"
|
||||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.apps.youtube.music"
|
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.apps.youtube.music"
|
||||||
|
|
||||||
[GooglePhotos]
|
[GooglePhotos]
|
||||||
build-mode = "both"
|
build-mode = "apk"
|
||||||
arch = "both"
|
arch = "both"
|
||||||
version = "auto"
|
version = "auto"
|
||||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/photos/"
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/photos/"
|
||||||
@@ -34,25 +34,50 @@ app-name = "Music"
|
|||||||
patches-source = "inotia00/revanced-patches"
|
patches-source = "inotia00/revanced-patches"
|
||||||
cli-source = "inotia00/revanced-cli"
|
cli-source = "inotia00/revanced-cli"
|
||||||
rv-brand = "ReVanced Extended"
|
rv-brand = "ReVanced Extended"
|
||||||
build-mode = "both"
|
build-mode = "apk"
|
||||||
arch = "both"
|
arch = "both"
|
||||||
|
included-patches = "'Custom header for YouTube Music' 'Spoof client'"
|
||||||
|
excluded-patches = "'Custom branding icon for YouTube Music' 'Custom branding name for YouTube Music'"
|
||||||
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube-music"
|
||||||
|
|
||||||
|
[Music-Extended-Beta]
|
||||||
|
app-name = "Music"
|
||||||
|
patches-source = "inotia00/revanced-patches"
|
||||||
|
patches-version = "dev"
|
||||||
|
cli-source = "inotia00/revanced-cli"
|
||||||
|
rv-brand = "ReVanced Extended"
|
||||||
|
build-mode = "apk"
|
||||||
|
arch = "both"
|
||||||
|
included-patches = "'Custom header for YouTube Music' 'Spoof client'"
|
||||||
|
excluded-patches = "'Custom branding icon for YouTube Music' 'Custom branding name for YouTube Music'"
|
||||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube-music"
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube-music"
|
||||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.apps.youtube.music"
|
|
||||||
|
|
||||||
[YouTube-Extended]
|
[YouTube-Extended]
|
||||||
app-name = "YouTube"
|
app-name = "YouTube"
|
||||||
patches-source = "inotia00/revanced-patches"
|
patches-source = "inotia00/revanced-patches"
|
||||||
cli-source = "inotia00/revanced-cli"
|
cli-source = "inotia00/revanced-cli"
|
||||||
rv-brand = "ReVanced Extended"
|
rv-brand = "ReVanced Extended"
|
||||||
build-mode = "both"
|
build-mode = "apk"
|
||||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube"
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube"
|
||||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.google.android.youtube"
|
included-patches = "'Custom header for YouTube' 'MaterialYou' 'Hide Shorts dimming'"
|
||||||
|
excluded-patches = "'Custom branding icon for YouTube' 'Custom branding name for YouTube' 'Disable splash animation'"
|
||||||
|
|
||||||
|
[YouTube-Extended-Beta]
|
||||||
|
app-name = "YouTube"
|
||||||
|
patches-source = "inotia00/revanced-patches"
|
||||||
|
patches-version = "dev"
|
||||||
|
cli-source = "inotia00/revanced-cli"
|
||||||
|
rv-brand = "ReVanced Extended"
|
||||||
|
build-mode = "apk"
|
||||||
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/google-inc/youtube"
|
||||||
|
included-patches = "'Custom header for YouTube' 'MaterialYou'"
|
||||||
|
excluded-patches = "'Custom branding icon for YouTube' 'Custom branding name for YouTube' 'Disable splash animation'"
|
||||||
|
|
||||||
[Reddit-Extended]
|
[Reddit-Extended]
|
||||||
patches-source = "inotia00/revanced-patches"
|
patches-source = "inotia00/revanced-patches"
|
||||||
cli-source = "inotia00/revanced-cli"
|
cli-source = "inotia00/revanced-cli"
|
||||||
rv-brand = "ReVanced Extended"
|
rv-brand = "ReVanced Extended"
|
||||||
apkmirror-dlurl = "https://www.apkmirror.com/apk/redditinc/reddit/"
|
apkmirror-dlurl = "https://www.apkmirror.com/apk/redditinc/reddit"
|
||||||
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.reddit.frontpage"
|
# archive-dlurl = "https://archive.org/download/jhc-apks/apks/com.reddit.frontpage"
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user