Skip to content

Commit 94f3571

Browse files
committed
add missing update latest patch to artifacts workflow
1 parent 5d318b0 commit 94f3571

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/artifacts.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,12 @@ jobs:
7272
Invoke-WebRequest -Uri $env:SOURCE2_VIEWER_URL -OutFile ".\cli-windows-x64.zip"
7373
Expand-Archive -Path .\cli-windows-x64.zip -DestinationPath . -Force
7474
75+
- name: Update data module to latest patch
76+
if: steps.update_patch.outputs.wasPatchUpdated == 'true'
77+
run: |
78+
Get-ChildItem -Force
79+
.\scripts\update-latest-patch.ps1
80+
7581
- name: Generate Triangles
7682
if: steps.update_patch.outputs.wasPatchUpdated == 'true'
7783
run: |
@@ -121,7 +127,7 @@ jobs:
121127
# Fetch main and reset the working directory to match main so that only desired changes remain
122128
git fetch origin main
123129
git reset --hard origin/main
124-
# (Optional) Run formatting only on __init__.py if needed:
130+
# Run formatting only on awpy/data/__init__.py:
125131
uv run ruff format awpy/data/__init__.py
126132
# Stage and commit only the file you want to update
127133
git add awpy/data/__init__.py

0 commit comments

Comments
 (0)