Skip to content

Commit 16b47aa

Browse files
committed
fix cicd
1 parent a1b7219 commit 16b47aa

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ jobs:
6464
- name: Adjust for LWJGL3
6565
if: matrix.buildType == 'lwjgl3'
6666
run: |
67-
uv run python ./gen-lwjgl3-manifest.py
67+
uv run --directory ./buildtools python ./gen-lwjgl3-manifest.py
6868
cp -vf cmmc/manifest.json manifest.json
6969
7070
- name: Install Mods
7171
env:
7272
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
73-
run: uv run python ./mod-install.py
73+
run: uv run --directory ./buildtools python ./mod-install.py
7474

7575
- name: Clean up placeholder files
7676
run: find . -name ".gitkeep" -delete

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,13 @@ jobs:
6161
- name: Adjust for LWJGL3
6262
if: matrix.buildType == 'lwjgl3'
6363
run: |
64-
uv run python ./gen-lwjgl3-manifest.py
64+
uv run --directory ./buildtools python ./gen-lwjgl3-manifest.py
6565
cp -vf cmmc/manifest.json manifest.json
6666
6767
- name: Install Mods
6868
env:
6969
CF_API_TOKEN: ${{ secrets.CF_API_TOKEN }}
70-
run: uv run python ./mod-install.py
70+
run: uv run --directory ./buildtools python ./mod-install.py
7171

7272
- name: Clean up placeholder files
7373
run: find . -name ".gitkeep" -delete

0 commit comments

Comments
 (0)