Skip to content

Commit dfd9eff

Browse files
committed
Changes to refresh_static.yml
1 parent 594b2d8 commit dfd9eff

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/refresh_static.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,15 @@ jobs:
2626
run: npm ci
2727

2828
- name: Run refresh-static.ts
29-
id: refresh-downstream-script
30-
run: npm run refresh-static
29+
id: refresh-static-script
30+
run: |
31+
npm run refresh-static
32+
git diff --compact-summary
3133
3234
- name: check for diff
33-
if: steps.refresh-downstream-script.outcome == 'success'
35+
if: steps.refresh-static-script.outcome == 'success'
3436
id: check-for-diff
3537
run: |
36-
git diff --compact-summary
3738
if [[ -n "$(git diff)" ]]; then
3839
echo "changes-available=TRUE" >> $GITHUB_OUTPUT
3940
else

0 commit comments

Comments
 (0)