Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/pdoc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@ name: Pdoc

on:
push:
tags:
- v*.*.*
tags:
- v*.*.*
workflow_dispatch:

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's up with this?


jobs:
build:
Expand Down Expand Up @@ -35,7 +36,7 @@ jobs:
- name: Run sed # Removes insanely-long parameter definition from docs
working-directory: ./api_documentation
run: |
sed -i '' -E 's#(AhocorasickTokenizer\().*(markup_text:)#\1),<br>\2#g' eyecite/find.html eyecite/index.html
sed -i -E 's#(AhocorasickTokenizer\().*(markup_text:)#\1),<br>\2#g' eyecite/find.html eyecite/index.html

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Changes:
- CI: benchmark runs are superseded when a PR is updated, time out after 15 minutes, and pin their third-party action to a commit SHA. #332

Fixes:
- CI: fix `sed` invocation syntax in the Pdoc workflow on GNU/Linux runners and
add `workflow_dispatch` trigger. #316
- CI: harden the benchmark's `repository_dispatch` job against shell script
injection by passing `client_payload` values through the environment and
validating their shape, instead of interpolating them into `run:`. #337
Expand Down
Loading