Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix missing permissions in Pages workflow #523

Merged
merged 2 commits into from
May 18, 2024
Merged
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
15 changes: 15 additions & 0 deletions .github/workflows/jekyll-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,21 @@ jobs:
with:
source: ./doc
destination: ./_site
- name: Install TeX Live
uses: zauguin/install-texlive@v3
with:
package_file: .github/tl_packages
- name: Checkout fonts for testing
uses: actions/checkout@v4
with:
repository: wspr/fontspec-test-fonts
path: fontspec-test-fonts
- name: Install fonts for testing
run: ./fontspec-test-fonts/install.sh
- name: Documentation
run: l3build doc -q -H --show-log-on-error
- name: Copy PDF
run: sudo cp *.pdf ./_site/
- name: Upload artifact
uses: actions/upload-pages-artifact@v3

Expand Down