Skip to content

Generate MMAR Modules Meta JSON #86

Generate MMAR Modules Meta JSON

Generate MMAR Modules Meta JSON #86

Workflow file for this run

name: Generate MMAR Modules Meta JSON
on:
push:
workflow_dispatch:
schedule:
- cron: '0 * * * *'
permissions:
contents: write
issues: write
pull-requests: write
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
generate:
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
pip install gitpython
- name: Generate JSON
run: |
export REPO_NAME="Magisk-Modules-Alt-Repo"
export REPO_TITLE="Magisk Modules Alt Repo"
export REPO_SUBMIT_MODULE="https://github.com/Magisk-Modules-Alt-Repo/submission"
export REPO_SCOPE="mmar"
export GIT_TOKEN="${{ secrets.AUTH_KEY }}"
python generate-modules.py "${{ secrets.TOKEN }}"
- name: Setup Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "Googlers Repo Service"
- name: Setup Git LFS
run: |
git lfs uninstall
git reset --hard
git lfs install
git lfs pull
- name: Commit Changes
run: |
git add .
git commit -sm "Update MMAR mirrors" || true
git lfs migrate import --include="*.zip" -y
git push --force || true
build:
runs-on: ubuntu-latest
needs: generate
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Build with Jekyll
uses: actions/jekyll-build-pages@v1
with:
source: ./
destination: ./_site
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2