Update Prebuilt APKs #48
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
name: Update Prebuilt APKs | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 3 * * 0" # Run every Sunday at 9 AM IST (3:30 AM UTC) | |
jobs: | |
update-apps: | |
runs-on: ubuntu-latest | |
env: | |
ACCESS_TOKEN: ${{ secrets.TOKEN }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: "adopt" | |
java-version: "11" | |
- name: Download Via Browser | |
run: | | |
curl -LJO https://res.viayoo.com/v1/via-release.apk | |
- name: Download DuckDuckGo APK | |
uses: robinraju/[email protected] | |
with: | |
repository: "duckduckgo/Android" | |
latest: true | |
fileName: "*.apk" | |
- name: Move APKs | |
run: | | |
rm -f *nomaps*.apk | |
mv via-release.apk ViaBrowser/ViaBrowser.apk | |
mv duckduckgo*.apk DuckDuckGo/DuckDuckGo.apk | |
- name: Check for Updated Apps | |
id: check_updates | |
run: | | |
CHANGED_FILES=$(git diff --name-only) | |
UPDATED_APPS="" | |
if echo "$CHANGED_FILES" | grep -q "ViaBrowser"; then | |
UPDATED_APPS+="ViaBrowser, " | |
fi | |
if echo "$CHANGED_FILES" | grep -q "DuckDuckGo"; then | |
UPDATED_APPS+="DuckDuckGo" | |
fi | |
if [ -n "$UPDATED_APPS" ]; then | |
echo "UPDATED_APPS=$UPDATED_APPS" >> $GITHUB_ENV | |
else | |
echo "No apps updated, skipping further steps." | |
exit 0 | |
fi | |
- name: Commit Changes | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "S I P U N" | |
UPDATED_APPS=$(echo $UPDATED_APPS | sed 's/,$//') | |
git add . | |
git commit -sm "prebuilts: Update $UPDATED_APPS" | |
- name: Push Changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ env.ACCESS_TOKEN }} |