Skip to content

Commit f1a750b

Browse files
committed
debug workflow error
1 parent 8178aa8 commit f1a750b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/validate-links.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
PYTHONPATH: ${{ github.workspace }}
4141
run: |
4242
make validate-github
43-
echo "has_broken_links=$(python -c \"import json; data=json.load(open('validation_results.json')); print('true' if data['newly_broken'] else 'false')\")" >> "$GITHUB_OUTPUT"
43+
has_broken_links=$(python -c "import json; data=json.load(open('validation_results.json')); print('true' if data['newly_broken'] else 'false')")
44+
echo "has_broken_links=${has_broken_links}" >> "$GITHUB_OUTPUT"
4445
4546
- name: Upload validation results
4647
if: always()

0 commit comments

Comments
 (0)