Skip to content

Commit a4ad620

Browse files
authored
Update update-package-json.yml
1 parent d376a76 commit a4ad620

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/update-package-json.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,10 @@ jobs:
2626
- name: Validate and update package.json
2727
id: validate
2828
run: |
29-
python .github/scripts/validate-package-json.py; EXIT_CODE=$?
29+
set +e
30+
python .github/scripts/validate-package-json.py
31+
EXIT_CODE=$?
32+
set -e
3033
echo "changes_made=$EXIT_CODE" >> $GITHUB_OUTPUT
3134
3235
- name: Commit and push changes

0 commit comments

Comments
 (0)