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
9 changes: 8 additions & 1 deletion .github/workflows/preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,9 @@ jobs:
python-version: '3.10'

- name: Install Python Dependencies
run: pip install -r ./blog/requirements.txt
run: |
pip install -r ./blog/requirements.txt
pip install requests beautifulsoup4

- name: Build Blog
run: |
Expand All @@ -45,6 +47,11 @@ jobs:
./scripts/chpl_blog.py build --fast -D -F
for file in $(find public -name "*.html"); do ./scripts/insert_links.py $file; done

- name: Verify Links
run: |
cd ./blog
python3 ./scripts/check_doc_links.py file-link-cache.json

- name: Archive Generated HTML
uses: actions/upload-artifact@v4
with:
Expand Down
Loading