Skip to content

Commit 471050a

Browse files
committed
Fix broken part of workflow, streamlined requirements installing
1 parent 27371e8 commit 471050a

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/minor_patch_diff.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,16 +47,16 @@ jobs:
4747
- name: Install Python Dependencies
4848
if: steps.versions.outputs.is_new == 'true'
4949
run: |
50-
pip install -r requirements.txt
50+
pip install -r requirements-vtable.txt
5151
5252
- name: Run Diff
5353
if: steps.versions.outputs.is_new == 'true'
5454
run: |
5555
LATEST_EXE=$(find latest -name "ffxiv_dx11.exe" | head -n 1)
5656
PREVIOUS_EXE=$(find previous -name "ffxiv_dx11.exe" | head -n 1)
5757
58-
mv "$LATEST_EXE" "ffxiv_dx11.${{ steps.versions.outputs.retail_new }}.exe"
59-
mv "$PREVIOUS_EXE" "ffxiv_dx11.${{ steps.versions.outputs.retail_prev }}.exe"
58+
cp "$LATEST_EXE" "ffxiv_dx11.${{ steps.versions.outputs.retail_new }}.exe"
59+
cp "$PREVIOUS_EXE" "ffxiv_dx11.${{ steps.versions.outputs.retail_prev }}.exe"
6060
6161
# Run the diffing process and capture JSON output
6262
python vtable_diff.py "ffxiv_dx11.${{ steps.versions.outputs.retail_prev }}.exe" "ffxiv_dx11.${{ steps.versions.outputs.retail_new }}.exe" > "diffs/${{ steps.versions.outputs.retail_new }}.diff.json"

requirements-vtable.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
click==8.2.1
2+
r2pipe==1.9.6
3+
semver==3.0.4

0 commit comments

Comments
 (0)