fix: Traditional Chinese is not displayed (#253) #213
This file contains 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: Build and Deploy | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
env: | |
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout 🛎️ | |
uses: actions/checkout@v3 | |
- name: Install and Build 🔧 | |
run: | | |
yarn install | |
yarn crowdin:sync | |
yarn build | |
- name: Build PDF prerequisites 🔨 | |
run: | | |
sudo apt install fonts-noto -y | |
curl https://www.princexml.com/download/prince-14.2-linux-generic-x86_64.tar.gz -O | |
tar zxf prince-14.2-linux-generic-x86_64.tar.gz | |
cd prince-14.2-linux-generic-x86_64 | |
yes "" | sudo ./install.sh | |
# https://github.com/signcl/docusaurus-prince-pdf | |
- name: Generate PDF 🖨️ | |
run: | | |
yarn serve > /dev/null & | |
sleep 3s | |
npx docusaurus-prince-pdf --include-index -u http://localhost:3000/docs/overview --output pdf/Casbin_Docs.pdf | |
npx docusaurus-prince-pdf --include-index -u http://localhost:3000/zh/docs/overview --list-only | |
wget https://gist.githubusercontent.com/Selflocking/7a07d91d34ee227c93d2d8f583f981e3/raw/996a610b96e7e1f42e06ec555528f3427c2fb647/print.css | |
prince --no-warn-css --style=print.css --input-list=./pdf/localhost-zh-docs-overview.txt -o pdf/Casbin_Docs_zh.pdf | |
rm pdf/*.txt | |
mv pdf/* build/pdf/ -f | |
- name: Upload results 📤 | |
uses: actions/upload-artifact@v3 | |
with: | |
name: PDFs | |
path: build/pdf/ | |
if-no-files-found: error | |
- name: Deploy 🚀 | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
ssh-key: ${{ secrets.DEPLOY_KEY }} | |
git-config-name: casbin-bot | |
git-config-email: bot@casbin.com | |
repository-name: casbin/casbin.io | |
branch: master # The deploy branch. | |
folder: build # The deploy folder. |