Skip to content

Commit 2e0f874

Browse files
committed
check for double-escaping
1 parent 0f4abea commit 2e0f874

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/publish.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,17 @@ jobs:
4646
# path: ./
4747
- name: Render for school
4848
run: ./extras/scripts/school_ci.sh ${{ matrix.school }}
49+
50+
# have had issues with nbgitpuller URLs being double-escaped, which causes an error when trying to open it
51+
- name: Confirm there isn't double-escaping
52+
run: |
53+
if grep -r "&" _build/html; then
54+
echo "Double-escaped URL"
55+
exit 1
56+
else
57+
echo "No double-escaping"
58+
fi
59+
4960
- name: Update commit
5061
run: |
5162
git add -A

0 commit comments

Comments
 (0)