Skip to content

Commit

Permalink
Hopfully final API Change
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGoogler authored Sep 26, 2023
1 parent b030477 commit 83bd9b9
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 6 deletions.
48 changes: 47 additions & 1 deletion .github/workflows/generate-mmar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,20 @@ on:
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:
build:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -34,6 +46,40 @@ jobs:
run: |
git config --global user.email "[email protected]"
git config --global user.name "Googlers Repo Service"
git lfs install
git add .
git commit -sm "Update MMAR mirrors" || true
git lfs migrate import --include="*.zip" -y
git push || 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
54 changes: 50 additions & 4 deletions .github/workflows/generate-mmr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,20 @@ on:
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:
build:
generate:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -27,12 +39,46 @@ jobs:
export REPO_TITLE="Magisk Modules Repo (Official)"
export REPO_FILE="mmr.json"
export GIT_TOKEN="${{ secrets.AUTH_KEY }}"
python generate-modules.py "${{ secrets.TOKEN }}"
python generate-modules.py "${{ secrets.TOKEN }}"
- name: Commit Changes
run: |
git config --global user.email "[email protected]"
git config --global user.name "Googlers Repo Service"
git lfs install
git add .
git commit -sm "Update MMR mirrors" || true
git commit -sm "Update MMAR mirrors" || true
git lfs migrate import --include="*.zip" -y
git push || 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
2 changes: 1 addition & 1 deletion generate-modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def does_object_exists(repo: Repository, object_path: str) -> bool:
# Check if META-INF folder exists, which is required to install modules
"valid": does_object_exists(repo, "META-INF"),
"last_update": int(last_update_timestamp * 1000),
# "prop_url": f"https://raw.githubusercontent.com/{repo.full_name}/{repo.default_branch}/module.prop",
"prop_url": f"https://raw.githubusercontent.com/{repo.full_name}/{repo.default_branch}/module.prop",
"zip_url": f"https://api.mmrl.dergoogler.com/modules/{repo.name}.zip",
"notes_url": f"https://raw.githubusercontent.com/{repo.full_name}/{repo.default_branch}/README.md",
"stars": int(repo.stargazers_count),
Expand Down

0 comments on commit 83bd9b9

Please sign in to comment.