diff options
| author | louist103 <35883445+louist103@users.noreply.github.com> | 2024-01-17 22:40:03 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-17 22:40:03 -0500 |
| commit | c0a18d093a0d0834d7f7c77ff55555aae1aa20bf (patch) | |
| tree | 12ab06f22701e8209567174491f73bfd84183a7c | |
| parent | af6c1a869eb2ecb753525695c07d18b301002d52 (diff) | |
Update main.yml
| -rw-r--r-- | .github/workflows/main.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6df8606..a22af21 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -44,6 +44,13 @@ jobs: python3 extract_baserom.py python3 extract_assets.py + - name: Install Python dependencies + run: | + cd mm + python3 -m venv .mm-env + source .mm-env/bin/activate + python3 -m pip install -r requirements.txt + - name: Setup MM run: | cd mm @@ -55,13 +62,6 @@ jobs: python3 tools/decompress_yars.py python3 extract_assets.py -j $(nproc) - - name: Install Python dependencies - run: | - cd mm - python3 -m venv .mm-env - source .mm-env/bin/activate - python3 -m pip install -r requirements.txt - - name: Build Repos run: echo "Build Repos" |
