From 3ff7a95a0c613b7533b68e55641e7670cf840a79 Mon Sep 17 00:00:00 2001 From: Antonio Abbatangelo Date: Wed, 30 Aug 2023 14:26:02 -0400 Subject: [PATCH] Include xdb as a submodule --- .github/workflows/build.yml | 4 +--- .gitmodules | 3 +++ README.md | 10 ++++++++++ xdb | 1 + 4 files changed, 15 insertions(+), 3 deletions(-) create mode 100644 .gitmodules create mode 160000 xdb diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6d46f020..c0b00f3f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,11 +8,9 @@ jobs: Build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - uses: actions/checkout@v3 with: - repository: xemu-project/xdb - path: xdb + submodules: true - name: Build env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 00000000..57a811ba --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "xdb"] + path = xdb + url = git@github.com:xemu-project/xdb.git diff --git a/README.md b/README.md index cc464514..5874239d 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,16 @@ xemu-website This repo contains the main website contents for the xemu original Xbox emulator with accompanying documentation and title information for compatibility reporting. +### Cloning + +This repository must be cloned with submodules to pull the Xbox title repository. + +```sh +$ git clone git@github.com:xemu-project/xemu-website.git --recurse-submodules +``` + +Or if already cloned, run `git submodules update --init --recursive` + ### Build To build, simply run `rm -rf dist/ && DEV=1 ./build.sh` from within the project root. diff --git a/xdb b/xdb new file mode 160000 index 00000000..bbfd7dd7 --- /dev/null +++ b/xdb @@ -0,0 +1 @@ +Subproject commit bbfd7dd78171a1a87699eec7ff8f36b54e2599d6