mirror of
https://github.com/xemu-project/xemu-website.git
synced 2024-11-26 21:00:33 +00:00
Download xdb
This commit is contained in:
parent
c4cd349ce4
commit
b882d8fb03
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -9,6 +9,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/checkout@v3
|
||||
with:
|
||||
repository: xemu-project/xdb
|
||||
path: xdb
|
||||
- name: Build
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
@ -20,7 +20,7 @@ from minify_html import minify as minify_html
|
||||
gh_token = os.getenv('GH_TOKEN')
|
||||
|
||||
output_dir = 'dist'
|
||||
repo_url_base = 'https://raw.githubusercontent.com/xemu-project/xemu-website/master/'
|
||||
repo_url_base = 'https://raw.githubusercontent.com/xemu-project/xdb/master/'
|
||||
compatibility_reports_url = 'https://reports.xemu.app/compatibility'
|
||||
compatibility_reports_url_verify_certs = True
|
||||
main_url_base = os.environ.get('BASE_URL', 'https://xemu.app')
|
||||
@ -235,7 +235,7 @@ def main():
|
||||
titles = []
|
||||
title_alias_map = {}
|
||||
title_lookup = {}
|
||||
for root, dirs, files in os.walk('titles', topdown=True):
|
||||
for root, dirs, files in os.walk('xdb/titles', topdown=True):
|
||||
for name in files:
|
||||
if name != 'info.json': continue
|
||||
title = Title(os.path.join(root,name))
|
||||
|
Loading…
Reference in New Issue
Block a user