We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 594b2d8 commit dfd9effCopy full SHA for dfd9eff
.github/workflows/refresh_static.yml
@@ -26,14 +26,15 @@ jobs:
26
run: npm ci
27
28
- name: Run refresh-static.ts
29
- id: refresh-downstream-script
30
- run: npm run refresh-static
+ id: refresh-static-script
+ run: |
31
+ npm run refresh-static
32
+ git diff --compact-summary
33
34
- name: check for diff
- if: steps.refresh-downstream-script.outcome == 'success'
35
+ if: steps.refresh-static-script.outcome == 'success'
36
id: check-for-diff
37
run: |
- git diff --compact-summary
38
if [[ -n "$(git diff)" ]]; then
39
echo "changes-available=TRUE" >> $GITHUB_OUTPUT
40
else
0 commit comments