Fix create-pull-request job, ignore exe files

This commit is contained in:
Flawed
2026-02-23 01:54:07 -08:00
parent 3caf97afa4
commit c58c694a6e
2 changed files with 9 additions and 7 deletions
+7 -6
View File
@@ -13,7 +13,7 @@ jobs:
pull-requests: write pull-requests: write
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@v4 uses: actions/checkout@v6
- name: Download Latest ffxiv_dx11.exe - name: Download Latest ffxiv_dx11.exe
id: downloader-latest id: downloader-latest
@@ -23,7 +23,7 @@ jobs:
regex: '^ffxiv_dx11\.exe$' regex: '^ffxiv_dx11\.exe$'
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5 uses: actions/setup-python@v6
with: with:
python-version: '3.12' python-version: '3.12'
cache: 'pip' cache: 'pip'
@@ -67,11 +67,11 @@ jobs:
- name: Upload Results - name: Upload Results
if: steps.versions.outputs.is_new == 'true' if: steps.versions.outputs.is_new == 'true'
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v6
with: with:
name: vtable-diffs-${{ steps.versions.outputs.date_new }} name: diff
path: | path: |
diffs/*.diff.json diffs/${{ steps.versions.outputs.retail_new }}.diff.json
- name: Create Pull Request - name: Create Pull Request
if: steps.versions.outputs.is_new == 'true' if: steps.versions.outputs.is_new == 'true'
@@ -84,7 +84,8 @@ jobs:
This automatic update contains the following changes: This automatic update contains the following changes:
- Updated `ffxiv_versions_global.json` - Updated `ffxiv_versions_global.json`
- Generated opcode diff for retail version ${{ steps.versions.outputs.retail_new }} - Generated opcode diff for retail version ${{ steps.versions.outputs.retail_new }}
branch: "auto-update/${{ steps.versions.outputs.date_new }}" branch: "auto-update"
branch-suffix: "short-commit-hash"
base: "main" base: "main"
delete-branch: true delete-branch: true
+1
View File
@@ -6,3 +6,4 @@ __pycache__
*.asm *.asm
*.json *.json
!diffs/*.json !diffs/*.json
*.exe