We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f4abea commit 2e0f874Copy full SHA for 2e0f874
.github/workflows/publish.yml
@@ -46,6 +46,17 @@ jobs:
46
# path: ./
47
- name: Render for school
48
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
60
- name: Update commit
61
run: |
62
git add -A
0 commit comments