Update model info and optimize content #43
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| name: Build PDF | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Install Chromium and CJK fonts | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y chromium-browser fonts-noto-cjk fonts-noto-cjk-extra | |
| - name: Install mdpress (latest) | |
| run: | | |
| LATEST_TAG=$(curl -fsSL -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ github.token }}" https://api.github.com/repos/yeasy/mdpress/releases/latest | jq -r .tag_name) | |
| VERSION="${LATEST_TAG#v}" | |
| echo "Installing mdpress $VERSION" | |
| curl -fsSL "https://github.com/yeasy/mdPress/releases/download/$LATEST_TAG/mdpress_${VERSION}_linux_amd64.tar.gz" -o /tmp/mdpress.tar.gz | |
| tar xzf /tmp/mdpress.tar.gz -C /tmp mdpress | |
| sudo mv /tmp/mdpress /usr/local/bin/ | |
| mdpress --version | |
| - name: Build PDF | |
| run: mdpress build --format pdf --output context_engineering_guide.pdf | |
| - name: Upload PDF as artifact | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: context_engineering_guide-pdf | |
| path: context_engineering_guide.pdf |