Skip to content

Generate Modules Meta JSON #6953

Generate Modules Meta JSON

Generate Modules Meta JSON #6953

name: Generate Modules Meta JSON
on:
push:
workflow_dispatch:
schedule:
- cron: '0 * * * *'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
architecture: 'x64'
- name: Setup Dependencies
run: |
python -m pip install --upgrade pip
pip install PyGithub
- name: Generate GMR JSON
run: |
export REPO_NAME="Googlers-Repo"
export REPO_TITLE="Googlers Magisk Repo"
export REPO_WEBSITE="https://dergoogler.com/repo"
export REPO_SUPPORT="https://t.me/The_Googler"
export GIT_TOKEN="${{ secrets.AUTH_KEY }}"
python generate-modules.py "${{ secrets.TOKEN }}" > gmr.json
- name: Generate MMAR JSON
run: |
export REPO_NAME="Magisk-Modules-Alt-Repo"
export REPO_TITLE="Magisk Modules Alt Repo"
export GIT_TOKEN="${{ secrets.AUTH_KEY }}"
python generate-modules.py "${{ secrets.TOKEN }}" > mmar.json
- name: Generate MMR JSON
run: |
export REPO_NAME="Magisk-Modules-Repo"
export REPO_TITLE="Magisk Modules Repo (Official)"
export GIT_TOKEN="${{ secrets.AUTH_KEY }}"
python generate-modules.py "${{ secrets.TOKEN }}" > mmr.json
- name: Commit Changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "Googlers Repo Service"
git add .
git commit -sm "Update mirrors" || true
git push || true